1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/inc/platforminit.hpp

10 lines
129 B
C++
Raw Normal View History

2024-05-23 16:50:41 -03:00
#ifndef XNA_PLATFORMINIT_HPP
#define XNA_PLATFORMINIT_HPP
namespace xna {
struct Platform {
static void Init();
};
}
#endif