- Created README.md with project description and setup instructions - Added project configuration files (TheGame.csproj, TheGame.sln, project.godot) - Implemented main game scenes (MainMenu.tscn, Game.tscn, LoadGameMenu.tscn) - Developed game logic in C# scripts (Game.cs, MainMenu.cs, LoadGameMenu.cs, PauseMenu.cs, SaveManager.cs) - Introduced save/load functionality and timer display - Included icon.svg for game branding
9 lines
130 B
C#
9 lines
130 B
C#
using Godot;
|
|
|
|
namespace TheGame
|
|
{
|
|
public static class GameState
|
|
{
|
|
public static float LoadedGameTime = -1;
|
|
}
|
|
} |