1
0
Fork 0
Univerxel/src/world/forward.h

9 lines
181 B
C
Raw Normal View History

2020-07-31 17:09:44 +00:00
#pragma once
#include <robin_hood.h>
#include "position.h"
namespace world {
class Chunk;
typedef robin_hood::unordered_map<chunk_pos, std::shared_ptr<Chunk>> chunk_map;
}