19 lines
316 B
C++
19 lines
316 B
C++
#include "block.hpp"
|
|
|
|
#include "../config.hpp"
|
|
|
|
// Texture winding order - top, bottom, left, right, front, back
|
|
|
|
// std::vector<std::pair<int, std::string>> TextureIdsAndPaths {
|
|
// {1, "dirt.png"},
|
|
// {2, "grass_side.png"},
|
|
// {3, "grass_top.png"}
|
|
// };
|
|
|
|
|
|
|
|
std::vector<std::shared_ptr<Block>> BlockAtlas() {
|
|
|
|
|
|
}
|