Guest User

Untitled

a guest
Nov 16th, 2018
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. //
  2. // Copyright © 2017-2018 Atlas Engineer LLC.
  3. // Use of this file is governed by the license that can be found in LICENSE.
  4. //
  5.  
  6. #import "Event.h"
  7.  
  8. @implementation Event
  9. @synthesize consumed;
  10.  
  11. -(instancetype)initWithEvent:(NSEvent *)event {
  12. self = [super init];
  13. if (self)
  14. {
  15. [self setConsumed:0];
  16. }
  17. return self;
  18. }
  19.  
  20. @end
Add Comment
Please, Sign In to add comment