mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
13 lines
121 B
C++
13 lines
121 B
C++
#ifndef ASSET_H
|
|
#define ASSET_H
|
|
|
|
#include <string>
|
|
|
|
namespace vb01{
|
|
struct Asset{
|
|
std::string path;
|
|
};
|
|
}
|
|
|
|
#endif
|