You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
647 B

namespace CMSGame
{
public partial class BattleActionMenu : VBoxContainer
{
public VBoxContainer DynamicActions;
public Button ItemActionButton;
public Button SkillActionButton;
public Button CommandActionButton;
public override void _Ready()
{
this.GetUniqueNode(ref ItemActionButton, nameof(ItemActionButton));
this.GetUniqueNode(ref DynamicActions, nameof(DynamicActions));
this.GetUniqueNode(ref SkillActionButton, nameof(SkillActionButton));
this.GetUniqueNode(ref CommandActionButton, nameof(CommandActionButton));
}
}
}