Add crosshairs mouse cursor

This commit is contained in:
Jack Andersen
2016-01-09 20:42:00 -10:00
parent 5485e7d2b1
commit f20c1bcfc2
8 changed files with 13 additions and 1 deletions

View File

@@ -1309,6 +1309,9 @@ public:
case EMouseCursor::IBeam:
[[NSCursor IBeamCursor] set];
break;
case EMouseCursor::Crosshairs:
[[NSCursor crosshairCursor] set];
break;
default: break;
}
});