#ifndef BASE_ENTITY_H #define BASE_ENTITY_H #include "stdincl.h" class BaseEntity { public: BaseEntity (); ~BaseEntity (); }; #endif