mirror of
https://github.com/ksherlock/TwoTerm.git
synced 2024-12-21 16:30:24 +00:00
25 lines
340 B
Objective-C
25 lines
340 B
Objective-C
//
|
|
// VT05.h
|
|
// 2Term
|
|
//
|
|
// Created by Kelvin Sherlock on 7/6/2010.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "Emulator.h"
|
|
|
|
#include "iGeometry.h"
|
|
|
|
#include "Screen.h"
|
|
|
|
|
|
@interface VT05 : NSObject <Emulator> {
|
|
unsigned cs;
|
|
unsigned _scratch[2];
|
|
context _context;
|
|
}
|
|
|
|
|
|
@end
|