summaryrefslogtreecommitdiff
path: root/global.h
blob: 44e520a86b17211217376be3a2511cd8d6a1a567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include <vector>
#include <memory>

#include "object_base.h"

using namespace std;


class Global{
public:
	vector<shared_ptr<Object>> objects;
};