1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/graphics/texture.hpp
2024-04-07 14:06:12 -03:00

20 lines
332 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 ITexture2D : public Texture {
public:
virtual ~ITexture2D(){}
virtual Int Width() const = 0;
virtual Int Height() const = 0;
};
}
#endif