blob: 5c527af9681bc08bd61c4188e46ff9fe7ec98bb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "Asset.h"
#include "../Component.h"
class Text : public Component{
public:
Text(game_object_id_t id, const Asset & font, int font_size);
int font_size = 16;
const Asset source;
private:
};
|