#ifndef _ENTITY_SPHERE_HPP_ #define _ENTITY_SPHERE_HPP_ // ------------------------------------------------------------------------------------------------ #include "Entity.hpp" // ------------------------------------------------------------------------------------------------ namespace SqMod { /* ------------------------------------------------------------------------------------------------ * ... */ class CSphere : public Reference< CSphere > { public: // -------------------------------------------------------------------------------------------- using RefType::Reference; }; } // Namespace:: SqMod #endif // _ENTITY_SPHERE_HPP_