summaryrefslogtreecommitdiffstats
path: root/src/RendererWorld.hpp
blob: 83020aaa30510df8a91d554e53f6844344a7b3c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include "RendererSection.hpp"

class RendererWorld {
	World* world;
public:
	RendererWorld(World* ptr);
	~RendererWorld();


};