TazGraph Project v0.1.0
Loading...
Searching...
No Matches
DataManager.h
1#pragma once
2
3#include <map>
4#include <memory>
5#include <string>
6
8public:
9 // Gets the single instance of CameraManager (singleton)
10 static DataManager& getInstance() {
11 static DataManager instance; // Guaranteed to be destroyed. Instantiated on first use.
12 return instance;
13 }
14
15 DataManager() {}
16
17 std::string mapToLoad;
18};
Definition DataManager.h:7