mirror of
https://github.com/trudnai/Steve2.git
synced 2024-11-15 20:09:33 +00:00
ea089cd7c5
- Joystick button assignment corrected - Adjusted speaker dumping - WOZ image can be opened from a memory buffer
22 lines
474 B
Objective-C
22 lines
474 B
Objective-C
//
|
|
// A2Mac-Bridging-Header.h
|
|
// A2Mac
|
|
//
|
|
// Created by Tamas Rudnai on 2/17/20.
|
|
// Copyright © 2020 GameAlloy. All rights reserved.
|
|
//
|
|
//
|
|
// Use this file to import your target's public headers that you would like to expose to Swift.
|
|
//
|
|
|
|
#ifndef A2Mac_Bridging_Header_h
|
|
#define A2Mac_Bridging_Header_h
|
|
|
|
|
|
#import "6502.h"
|
|
#include "speaker.h" // So we can access to speaker stuff from Swift
|
|
#include "disk.h"
|
|
#include "dsk2woz.h"
|
|
|
|
#endif /* A2Mac_Bridging_Header_h */
|