Files
vb01/fontAsset.h
T
2022-03-02 20:24:04 +02:00

13 lines
147 B
C++

#ifndef FONT_ASSET_H
#define FONT_ASSET_H
#include "asset.h"
namespace vb01{
struct FontAsset : public Asset{
FT_Face face;
};
}
#endif