1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/includes/xna/platform.hpp
2024-11-12 21:02:37 -03:00

13 lines
219 B
C++

#ifndef XNA_PLATFORM_HPP
#define XNA_PLATFORM_HPP
#include <memory>
namespace xna {
struct ImplementationBase {
struct PlatformImplementation;
std::unique_ptr<PlatformImplementation> Implementation;
};
}
#endif