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

using namespace crepe;

UiObject::UiObject(game_object_id_t id, int width, int height)
	: Component(id),
	  width(width),
	  height(height){};