mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
14 lines
233 B
C++
14 lines
233 B
C++
#ifndef XNA_PLATFORM_HPP
|
|
#define XNA_PLATFORM_HPP
|
|
|
|
#include <memory>
|
|
|
|
namespace xna {
|
|
template <typename T> struct PlatformImplementation {
|
|
virtual ~PlatformImplementation() {}
|
|
|
|
std::unique_ptr<T> Implementation;
|
|
};
|
|
}
|
|
|
|
#endif |