OnCursorEnter() protected méthode

protected OnCursorEnter ( ) : void
Résultat void
Exemple #1
0
 internal static void SetCursorEnterState(GlFwForm f, bool enter)
 {
     if (enter)
     {
         f.OnCursorEnter();
     }
     else
     {
         f.OnCursorLeave();
     }
 }