This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <string> | |
#include <memory> | |
#include <vector> | |
class BlockSource; | |
class Level; | |
class Material; | |
class Player; | |
class EntityPos; | |
class BlockPos; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <string> | |
#include <vector> | |
class Material; | |
class BlockEntity; | |
class BlockPos; | |
class BlockSource; | |
class Entity; | |
class Player; | |
class Mob; |