blob: fb62e11e2dbd912ea775c85686fe531cddff57eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#pragma once
#include <godot_cpp/classes/image.hpp>
#include "openvic2/Map.hpp"
namespace OpenVic2 {
class MapSingleton : public godot::Object {
GDCLASS(MapSingleton, godot::Object)
static MapSingleton* singleton;
godot::Ref<godot::Image> province_shape_image;
Map map;
protected:
static void _bind_methods();
public:
static MapSingleton* get_singleton();
MapSingleton();
~MapSingleton();
godot::Error load_province_identifier_file(godot::String const& file_path);
godot::Error load_province_shape_file(godot::String const& file_path);
godot::String get_province_identifier_from_colour(Province::colour_t colour);
godot::Ref<godot::Image> get_province_shape_image() const;
};
}
|