X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FPlayer.hpp;fp=src%2Fworld%2FPlayer.hpp;h=68aa352efcdcbfa202a3b30e4f1af73ebe08c165;hb=13e676a6e49128ebc6c63b8dd08bef51d360e8e9;hp=0000000000000000000000000000000000000000;hpb=43820582217f7e4b707d98f2e69d969eb77fc7c3;p=blank.git diff --git a/src/world/Player.hpp b/src/world/Player.hpp new file mode 100644 index 0000000..68aa352 --- /dev/null +++ b/src/world/Player.hpp @@ -0,0 +1,21 @@ +#ifndef BLANK_WORLD_PLAYER_HPP_ +#define BLANK_WORLD_PLAYER_HPP_ + +namespace blank { + +class ChunkIndex; +class Entity; + +struct Player { + + Entity *entity; + ChunkIndex *chunks; + + Player(Entity *e, ChunkIndex *i) + : entity(e), chunks(i) { } + +}; + +} + +#endif