voxelman/clutter/ground_clutter.h

20 lines
261 B
C
Raw Normal View History

2019-11-10 02:33:02 +01:00
#ifndef GROUND_CLUTTER_H
#define GROUND_CLUTTER_H
#include "core/resource.h"
class GroundClutter : public Resource {
GDCLASS(GroundClutter, Resource);
public:
GroundClutter();
~GroundClutter();
private:
static void _bind_methods();
private:
};
#endif