Files
Minecraft/src/world/block.cpp
2019-10-07 12:10:49 +01:00

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() {
}