mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2025-02-09 06:30:25 +00:00
23 lines
309 B
Objective-C
23 lines
309 B
Objective-C
//
|
|
// Apple80.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 12/23/2010.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "Emulator.h"
|
|
#include "iGeometry.h"
|
|
|
|
@interface Apple80 : NSObject <Emulator> {
|
|
|
|
unsigned _state;
|
|
|
|
iPoint _dca;
|
|
|
|
}
|
|
|
|
@end
|