aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Text.cpp
blob: c072ee78ebadd96740415d4fe9cedede8123709c (plain)
1
2
3
4
5
6
7
8
9
#include "Text.h"

using namespace crepe;

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