bisschen gui bisschen moving timeline

This commit is contained in:
2026-07-29 22:54:19 +02:00
parent 9824b30435
commit 0bb8ce47c0
13 changed files with 240 additions and 119 deletions

14
Main.cs
View File

@@ -1,4 +1,16 @@
using Godot;
[SceneTree]
public partial class Main : Node2D { }
public partial class Main : Node2D
{
[Export]
public Company Company;
public override void _Ready()
{
Company = new Company();
Company.Hype = 0;
ExecuteButton.Pressed += () => DaySchedule.StartDay();
}
}