McRogueFace/src/UIEntity.cpp

10 lines
232 B
C++
Raw Normal View History

#include "UIEntity.h"
UIEntity::UIEntity() {} // this will not work lol. TODO remove default constructor by finding the shared pointer inits that use it
UIEntity::UIEntity(UIGrid& grid)
: gridstate(grid.grid_x * grid.grid_y)
{
}