blob: f27040912f10a9d330f1c5c2545ceb82b4bf4a86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SCENE_H
#define SCENE_H
#include <vector>
#include "object.hpp"
class Scene {
public:
void addShape(const Shape *obj);
std::vector<const Shape*> objs;
};
#endif
|