diff options
author | Hop311 <hop3114@gmail.com> | 2023-04-28 20:08:58 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-04-28 20:08:58 +0200 |
commit | 5022ec800b096e9a85d6ef07ca4b652abb8625ee (patch) | |
tree | 899b97479f6a1aabbfe352747bea162ce5720193 /game/src/Autoload/Events.gd | |
parent | 2455806f52f0133e5bd5e4997589c5ce4fe99b2c (diff) |
Terrain channel for provinces + generated minimap
Diffstat (limited to 'game/src/Autoload/Events.gd')
-rw-r--r-- | game/src/Autoload/Events.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/game/src/Autoload/Events.gd b/game/src/Autoload/Events.gd index 7540d3e..f94d338 100644 --- a/game/src/Autoload/Events.gd +++ b/game/src/Autoload/Events.gd @@ -1,7 +1,9 @@ extends Node +var GameDebug = preload("Events/GameDebug.gd").new() var Options = preload("Events/Options.gd").new() var Localisation = preload("Events/Localisation.gd").new() +var ShaderManager = preload("Events/ShaderManager.gd").new() const _province_identifier_file : String = "res://common/map/provinces.json" const _water_province_file : String = "res://common/map/water.json" |