]> git.localhorst.tv Git - blank.git/blob - WorldManipulator.hpp
2da024177e682e5eb4d4da3c1eadec9b53cf996a
[blank.git] / WorldManipulator.hpp
1 #ifndef BLANK_WORLD_WORLDMANIPULATOR_HPP_
2 #define BLANK_WORLD_WORLDMANIPULATOR_HPP_
3
4
5 namespace blank {
6
7 class Block;
8 class Chunk;
9
10 struct WorldManipulator {
11
12         virtual void SetBlock(Chunk &, int, const Block &) = 0;
13
14 };
15
16 }
17
18 #endif