17 lines
276 B
C#
17 lines
276 B
C#
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();
|
|
}
|
|
}
|