blob: 6e3f33eaa4250401846f7bc64fe9977fd18365e7 (
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 addObject(Object obj);
std::vector<Object> objs;
};
#endif
|