aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Text.cpp
blob: 29e36f15b274b9045597cfc5a27f592dbe1a593b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "Text.h"
#include "types.h"

using namespace crepe;

Text::Text(
	game_object_id_t id, const vec2 & dimensions, const std::string & font_family,
	const Data & data, const vec2 & offset, const std::string & text
)
	: UIObject(id, dimensions, offset),
	  text(text),
	  data(data),
	  font_family(font_family) {}