PlatformAndroid.h 369 B

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