PlatformWindows.h 417 B

123456789101112131415161718192021222324252627
  1. #pragma once
  2. #include "Platform.h"
  3. namespace ToolCore
  4. {
  5. class PlatformWindows : public Platform
  6. {
  7. OBJECT(PlatformWindows);
  8. public:
  9. PlatformWindows(Context* context);
  10. virtual ~PlatformWindows();
  11. String GetName() { return "WINDOWS"; }
  12. PlatformID GetPlatformID() { return PLATFORMID_WINDOWS; }
  13. BuildBase* NewBuild(Project* project);
  14. virtual bool GetLicense() { return true; }
  15. };
  16. }