mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
24 lines
396 B
C++
24 lines
396 B
C++
|
#ifndef XNA_GRAPHICS_TEXTURE_HPP
|
||
|
#define XNA_GRAPHICS_TEXTURE_HPP
|
||
|
|
||
|
#include "../forward.hpp"
|
||
|
#include "../types.hpp"
|
||
|
#include "../enums.hpp"
|
||
|
|
||
|
namespace xna {
|
||
|
class Texture {
|
||
|
};
|
||
|
|
||
|
class Texture2D : public Texture {
|
||
|
public:
|
||
|
PLATFORM_DEVELOPMENT
|
||
|
Texture2D();
|
||
|
|
||
|
public:
|
||
|
class InternalProperty;
|
||
|
friend class InternalProperty;
|
||
|
sptr<InternalProperty> ip_Texture2D{ nullptr };
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|