mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-05-19 06:08:22 +02:00
15 lines
198 B
C++
15 lines
198 B
C++
#ifndef PLATFORM_LINUX_H
|
|
#define PLATFORM_LINUX_H
|
|
|
|
#include "core/os/platform.h"
|
|
|
|
class PlatformLinux : public Platform {
|
|
public:
|
|
PlatformLinux();
|
|
virtual ~PlatformLinux();
|
|
|
|
protected:
|
|
};
|
|
|
|
#endif
|