mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 23:48:11 +00:00
added the game
This commit is contained in:
22
addons/mod_loader/resources/mod_user_profile.gd
Normal file
22
addons/mod_loader/resources/mod_user_profile.gd
Normal 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
|
Reference in New Issue
Block a user