mirror of
				https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
				synced 2025-11-04 08:35:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			481 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			481 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
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
 |