예제 #1
0
파일: SSGUI.cs 프로젝트: Farl/SSCore2017
 public static void Unregister(DrawGUIDelegate func)
 {
     onDrawGUI = onDrawGUI - func;
 }
예제 #2
0
파일: SSGUI.cs 프로젝트: Farl/SSCore2017
 public static void Register(DrawGUIDelegate func)
 {
     onDrawGUI = onDrawGUI + func;
 }