#pragma once class Object { public: enum Type { NONE, BODY, SHIP, SPACESTATION, LASER, GEOM }; virtual Type GetType(void) = 0; };