Delete src/world/WorldTypes.h

This commit is contained in:
Onran 2024-02-23 11:39:15 +09:00 committed by GitHub
parent 4d99b2bbab
commit 9e761fbeee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +0,0 @@
#ifndef WORLD_WORLDTYPES_H_
#define WORLD_WORLDTYPES_H_
#include "../voxels/WorldGenerator.h"
#include "../content/Content.h"
#include <vector>
#include <string>
class WorldTypes {
public:
static std::vector<std::string> getWorldTypes();
static std::string getDefaultWorldType();
static WorldGenerator* createWorldGenerator(std::string worldType, const Content* content);
};
#endif /* WORLD_WORLDTYPES_H_ */