#include "GridObject.h" SERIALIZE_BEGIN(GridObject) SERIALIZE_END() bool GridObject::PostInit() { bool res = Parent::PostInit(); SetRenderable(false); SetTouchable(false, false); return res; }