FeatherMC/src/world/World.h

19 lines
270 B
C
Raw Normal View History

2020-08-07 05:48:54 +01:00
#pragma once
#include "Common.h"
#include <cstdint>
#include <string>
namespace Feather
{
class World
{
public:
struct LevelData
{
int32_t spawnX, spawnY, spawnZ;
} m_levelData;
World(std::string name);
};
}