bcirpggithubmirror/Godot/MainMenu/GodotUI/SaveSystem/GameSave.gd
darioGerussi 797006ced9 Reorganized Godot folder; uploaded my Main Menu version
Combined all Godot uploads from everyone into one folder (MainMenu) within a new folder for Godot files (Godot).

Uploaded my first draft version of the Main Menu file.
2021-10-17 13:19:21 -05:00

22 lines
397 B
GDScript

extends Resource
# Authors Luke Gebbink
# Last Changed 10/03/2021
# found
#
class_name SaveGame
export var game_version : String = ''
export var data : Dictionary = {}
# Called when the node enters the scene tree for the first time.
func _ready():
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
#func _process(delta):
# pass