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,22 @@
class_name ModUserProfile
extends Resource
## This Class is used to represent a User Profile for the ModLoader.
## The name of the profile
var name := ""
## A list of all installed mods
## [codeblock]
## "mod_list": {
## "Namespace-ModName": {
## "current_config": "default",
## "is_active": false,
## "zip_path": "",
## },
## [/codeblock]
var mod_list := {}
func _init(_name := "", _mod_list := {}) -> void:
name = _name
mod_list = _mod_list