PlatformWeb.h 672 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // Copyright (c) 2014-2015, THUNDERBEAST GAMES LLC All rights reserved
  3. // LICENSE: Atomic Game Engine Editor and Tools EULA
  4. // Please see LICENSE_ATOMIC_EDITOR_AND_TOOLS.md in repository root for
  5. // license information: https://github.com/AtomicGameEngine/AtomicGameEngine
  6. //
  7. #pragma once
  8. #include "Platform.h"
  9. namespace ToolCore
  10. {
  11. class PlatformWeb : public Platform
  12. {
  13. OBJECT(PlatformWeb);
  14. public:
  15. PlatformWeb(Context* context);
  16. virtual ~PlatformWeb();
  17. String GetName() { return "WEB"; }
  18. PlatformID GetPlatformID() { return PLATFORMID_WEB; }
  19. BuildBase* NewBuild(Project *project);
  20. virtual bool GetLicense() { return true; }
  21. };
  22. }