blob: f114226d6f2f6dc1b0d5592c3a08f90c4ae45e33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef SETTINGS_H
#define SETTINGS_H
#include <string>
struct Settings {
std::string sceneFilePath;
float xy = 0.f;
float z = 0.f;
float xz = 0.f;
float yz = 0.f;
float xw = 0.f;
float yw = 0.f;
float zw = 0.f;
float rotation = 1.f;
bool negative = false;
};
// The global Settings object, will be initialized by MainWindow
extern Settings settings;
#endif // SETTINGS_H
|