mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-28 12:33:26 +00:00
13 lines
151 B
C++
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
|