Add files via upload

This commit is contained in:
Onran
2024-02-23 11:45:55 +09:00
committed by GitHub
parent cfacf6f1eb
commit 549b392871
5 changed files with 31 additions and 70 deletions
+2 -3
View File
@@ -7,7 +7,6 @@ struct voxel;
class Content;
class WorldGenerator {
protected:
blockid_t const idStone;
blockid_t const idDirt;
blockid_t const idGrassBlock;
@@ -20,7 +19,7 @@ protected:
blockid_t const idBazalt;
public:
WorldGenerator(const Content* content);
virtual void generate(voxel* voxels, int x, int z, int seed);
void generate(voxel* voxels, int x, int z, int seed);
};
#endif /* VOXELS_WORLDGENERATOR_H_ */
#endif /* VOXELS_WORLDGENERATOR_H_ */