#ifndef PLATFORM_LINUX_H #define PLATFORM_LINUX_H #include "core/os/platform.h" class PlatformLinux : public Platform { public: PlatformLinux(); virtual ~PlatformLinux(); protected: }; #endif