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