add more meetings

This commit is contained in:
2026-08-12 14:03:39 +02:00
parent 51da5c97eb
commit 799597b8f5
14 changed files with 147 additions and 26 deletions

View File

@@ -0,0 +1,15 @@
using Godot;
namespace Game.Resources;
[GlobalClass]
public partial class GainCeoCompetenceAction : MeetingActionResource
{
[Export]
public int Amount;
public override void Execute(GameState gameState)
{
gameState.Ceo.Energy += Amount;
}
}