18 lines
190 B
C++
18 lines
190 B
C++
#pragma once
|
|
#include <spdlog/spdlog.h>
|
|
#include <string>
|
|
|
|
|
|
class Texture {
|
|
public:
|
|
Texture(const std::string texturePath);
|
|
|
|
void Bind();
|
|
void Unbind();
|
|
|
|
|
|
private:
|
|
|
|
unsigned int Id;
|
|
|
|
}; |