blob: e98058240318a343dba109886cf10f60cd1ec858 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <vector>
#include <memory>
#include "object_base.h"
using namespace std;
class Global{
public:
int room_speed=30;
vector<shared_ptr<Object>> objects;
};
|