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

13 lines
151 B
C++

#ifndef TEXT_ASSET_H
#define TEXT_ASSET_H
#include "asset.h"
namespace vb01{
struct TextAsset : public Asset{
std::string text;
};
}
#endif