mirror of
https://github.com/ApfelTeeSaft/vb01.git
synced 2026-08-26 19:33:45 +00:00
13 lines
152 B
C++
13 lines
152 B
C++
#ifndef FONT_ASSET_H
|
|
#define FONT_ASSET_H
|
|
|
|
#include "asset.h"
|
|
|
|
namespace vb01{
|
|
struct FontAsset : public Asset{
|
|
u32 **glyphImages;
|
|
};
|
|
}
|
|
|
|
#endif
|