Initial engine repository
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#ifdef __SWITCH__
|
||||
|
||||
#include <switch.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
namespace frostbite2D {
|
||||
/**
|
||||
* @brief Switch平台相关函数
|
||||
*/
|
||||
|
||||
void switchInit();
|
||||
void switchShutdown();
|
||||
|
||||
} // namespace frostbite2D
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#ifdef _WIN32
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
namespace frostbite2D {
|
||||
|
||||
void windowsInit();
|
||||
|
||||
} // namespace frostbite2D
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user