nice nice nice

This commit is contained in:
2026-08-03 13:15:39 +02:00
parent 0bb8ce47c0
commit 737919f66f
25 changed files with 206 additions and 61 deletions

16
Main.cs
View File

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