mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-19 10:26:54 +01:00
20 lines
220 B
C++
20 lines
220 B
C++
#ifndef WORLD_H
|
|
#define WORLD_H
|
|
|
|
#include "node.h"
|
|
|
|
class World : public Node {
|
|
GDCLASS(World, Node);
|
|
|
|
public:
|
|
World();
|
|
~World();
|
|
|
|
protected:
|
|
void _notification(int p_what);
|
|
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|