Files
vb01/source/core/assets/asset.h
2026-05-21 20:27:40 +03:00

13 lines
121 B
C++

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