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

14 lines
260 B
C++

#ifndef XNA_GRAPHICS_DATABUFFER_HPP
#define XNA_GRAPHICS_DATABUFFER_HPP
#include "../default.hpp"
namespace xna {
class IDataBuffer {
public:
virtual ~IDataBuffer(){}
virtual bool Initialize(GraphicsDevice& device, xna_error_nullarg) = 0;
};
}
#endif