mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
9 lines
158 B
C
9 lines
158 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace resources
|
||
|
|
{
|
||
|
|
bool resourceExists(std::string resource);
|
||
|
|
std::string getResourcePath(std::string resource);
|
||
|
|
}
|