| 12345678910111213141516171819 |
- //
- // KeyBindingView.h
- // gameutils
- //
- // Created by Sam Jaffe on 2/7/24.
- // Copyright © 2024 Sam Jaffe. All rights reserved.
- //
- #import <Cocoa/Cocoa.h>
- #include "game/engine/engine_fwd.hpp"
- NS_ASSUME_NONNULL_BEGIN
- @interface KeyBindingView : NSView
- @property engine::game_dispatch* engine;
- @end
- NS_ASSUME_NONNULL_END
|