using Godot; namespace Game.Resources; [GlobalClass] public partial class LooseCeoEnergyAction : MeetingActionResource { [Export] public int Amount; public override void Execute(GameState gameState) { gameState.Ceo.Energy -= Amount; } }