예제 #1
0
파일: BaseGUI.cs 프로젝트: ShoxTech/kRPG
        public InterfaceButton AddButton(Func <Rectangle> position, Action <Player> pressAction, Action <Player, SpriteBatch> hoverAction)
        {
            InterfaceButton button = new InterfaceButton(position, pressAction, hoverAction);

            buttons.Add(button);
            return(button);
        }
예제 #2
0
파일: BaseGUI.cs 프로젝트: ShoxTech/kRPG
 public void RemoveButton(InterfaceButton button)
 {
     buttons.Remove(button);
 }