예제 #1
0
파일: ModMenu.cs 프로젝트: TAImatem/owml
 public IModComboInput AddComboInput(IModComboInput input, int index)
 {
     ComboInputs.Add(input);
     AddInput(input, index);
     return(input);
 }
예제 #2
0
파일: ModMenu.cs 프로젝트: TAImatem/owml
 public IModComboInput GetComboInput(string title)
 {
     return(ComboInputs.FirstOrDefault(x => x.Title == title || x.Element.name == title));
 }