| 1234567891011121314151617181920212223 |
- #pragma once
- #include "Platform.h"
- namespace ToolCore
- {
- class PlatformWeb : public Platform
- {
- OBJECT(PlatformWeb);
- public:
- PlatformWeb(Context* context);
- virtual ~PlatformWeb();
- String GetName() { return "WEB"; }
- PlatformID GetPlatformID() { return PLATFORMID_WEB; }
- };
- }
|