summaryrefslogtreecommitdiff
path: root/game/world.h
blob: a0185e7f9b03fd2d510b77a290ae93dcc6a7adff (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef WORLD_H
#define WORLD_H

#include "worldobject.h"
#include <collection.hpp>

class World : public Collection<WorldObject> {
public:
};

#endif