| 1234567891011121314151617181920 |
- //
- // texture.hpp
- // graphics
- //
- // Created by Sam Jaffe on 7/5/16.
- //
- #pragma once
- #include "game/math/math_fwd.hpp"
- #include "game/util/identity.hpp"
- #include "vector/vector.hpp"
- namespace graphics {
- struct texture : public identity<texture> {
- texture(unsigned int id, math::vec2i const & size);
- math::vec2i const size;
- };
- }
|