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

using namespace crepe;

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