예제 #1
0
파일: GuiMaster.cs 프로젝트: Zugamifk/Magic
 public void SetDrawAction(DrawLambda d)
 {
     draw = d;
 }
예제 #2
0
파일: GuiMaster.cs 프로젝트: Zugamifk/Magic
 public void SetDrawAction(DrawLambda d)
 {
     draw = d;
 }
예제 #3
0
파일: GuiMaster.cs 프로젝트: Zugamifk/Magic
 public GUIObject(string n, Rect r, string t, DrawLambda l = null)
 {
     name = n; rect = r; text = t; draw = l; children = new List<GUIObject>();
 }
예제 #4
0
파일: GuiMaster.cs 프로젝트: Zugamifk/Magic
 public GUIObject(string n, Rect r, string t, DrawLambda l = null)
 {
     name = n; rect = r; text = t; draw = l; children = new List <GUIObject>();
 }