mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-22 07:30:40 +00:00
32 lines
374 B
Objective-C
32 lines
374 B
Objective-C
//
|
|
// GNOConsole.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 7/9/2010.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import "Emulator.h"
|
|
#include "iGeometry.h"
|
|
#include "Screen.h"
|
|
|
|
|
|
@interface GNOConsole : NSObject <Emulator>
|
|
{
|
|
unsigned _state;
|
|
|
|
TextPort _textPort;
|
|
|
|
|
|
iPoint _dca;
|
|
|
|
int _vp[4];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|