added the game

This commit is contained in:
JHDev2006
2025-09-13 16:30:32 +01:00
parent 5ef689109b
commit 3773bdaf64
3616 changed files with 263702 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
class_name ModLoaderCurrentOptions
extends Resource
# The default options set for the mod loader
@export var current_options: Resource = preload(
"res://addons/mod_loader/options/profiles/default.tres"
)
# Overrides for all available feature tags through OS.has_feature()
# Format: Dictionary[String: ModLoaderOptionsProfile] where the string is a tag
# Warning: Some tags can occur at the same time (Windows + editor for example) -
# In a case where multiple apply, the last one in the dict will override all others
@export var feature_override_options: Dictionary = {
"editor": preload("res://addons/mod_loader/options/profiles/editor.tres")
}