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

View File

@@ -0,0 +1,14 @@
using Godot;
using yourareanaiceo;
[GlobalClass]
public partial class GainHypeAction : MeetingActionResource
{
[Export]
public int Amount;
public override void Execute(GameState gameState)
{
gameState.Company.Hype += Amount;
}
}