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

using namespace crepe;

UIObject::UIObject(game_object_id_t id, vec2 dimensions,vec2 offset)
	: Component(id),
	  dimensions(dimensions),offset(offset){}