Files

13 lines
121 B
C++

#ifndef ASSET_H
#define ASSET_H
#include <string>
namespace vb01{
struct Asset{
std::string path;
};
}
#endif