mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-12 10:15:12 +01:00
20 lines
311 B
C
20 lines
311 B
C
|
#ifndef VOXELMAN_LEVEL_GENERATOR_H
|
||
|
#define VOXELMAN_LEVEL_GENERATOR_H
|
||
|
|
||
|
#include "core/resource.h"
|
||
|
|
||
|
class VoxelmanLevelGenerator : public Resource {
|
||
|
GDCLASS(VoxelmanLevelGenerator, Resource);
|
||
|
|
||
|
public:
|
||
|
VoxelmanLevelGenerator();
|
||
|
~VoxelmanLevelGenerator();
|
||
|
|
||
|
protected:
|
||
|
static void _bind_methods();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|