summary refs log tree commit diff
path: root/src/Texture.hpp
blob: 91b5e54877c92363f36e5b8e030b81356aef459d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include "Image/RawImage.hpp"

namespace MC {

class Texture {
public:
    Texture(const Image::RawImage& image);

    void bind();
    void unbind();
private:
    uint32_t m_texture;
};

}