Add some enums and the method -momentumPhase to NSEvent.

This commit is contained in:
fredkiefer 2017-07-22 20:17:00 +02:00
parent 79d6582884
commit a02b40a9dd
3 changed files with 43 additions and 0 deletions

View file

@ -1234,4 +1234,10 @@ static const char *eventTypes[] = {
return 0;
}
- (NSEventPhase) momentumPhase
{
// FIXME
return NSEventPhaseNone;
}
@end