CppStaticClassFile.h.template 189 B

1234567891011121314151617
  1. #pragma once
  2. #include "console/engineAPI.h"
  3. class @
  4. {
  5. DECLARE_STATIC_CLASS(@);
  6. private:
  7. protected:
  8. static @* smInstance;
  9. public:
  10. @();
  11. static @* instance() { return smInstance; }
  12. };