Skip to content

Instantly share code, notes, and snippets.

@jmercouris
Created November 16, 2018 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmercouris/e7e41748bf14ce26131ef932498edbcc to your computer and use it in GitHub Desktop.
Save jmercouris/e7e41748bf14ce26131ef932498edbcc to your computer and use it in GitHub Desktop.
//
// Copyright © 2017-2018 Atlas Engineer LLC.
// Use of this file is governed by the license that can be found in LICENSE.
//
#import "Event.h"
@implementation Event
@synthesize consumed;
-(instancetype)initWithEvent:(NSEvent *)event {
self = [super init];
if (self)
{
[self setConsumed:0];
}
return self;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment