mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
18 lines
285 B
C++
18 lines
285 B
C++
|
#ifndef XNA_PLATFORM_INIT_HPP
|
||
|
#define XNA_PLATFORM_INIT_HPP
|
||
|
|
||
|
#include "../default.hpp"
|
||
|
|
||
|
namespace xna {
|
||
|
struct InitPlatform {
|
||
|
static void Init() {
|
||
|
InitRegisteredTypes();
|
||
|
InitActivadors();
|
||
|
}
|
||
|
|
||
|
static void InitRegisteredTypes();
|
||
|
static void InitActivadors();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|