OnCursorEnter() protected method

protected OnCursorEnter ( ) : void
return void
Esempio n. 1
0
 internal static void SetCursorEnterState(GlFwForm f, bool enter)
 {
     if (enter)
     {
         f.OnCursorEnter();
     }
     else
     {
         f.OnCursorLeave();
     }
 }