KeyBindingView.h 328 B

12345678910111213141516171819
  1. //
  2. // KeyBindingView.h
  3. // gameutils
  4. //
  5. // Created by Sam Jaffe on 2/7/24.
  6. // Copyright © 2024 Sam Jaffe. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #include "game/engine/engine_fwd.hpp"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface KeyBindingView : NSView
  12. @property engine::game_dispatch* engine;
  13. @end
  14. NS_ASSUME_NONNULL_END