00001 // 00002 // LLTarget.h 00003 // MacTrek 00004 // 00005 // Created by Aqua on 27/04/2006. 00006 // Copyright 2006 __MyCompanyName__. All rights reserved. 00007 // 00008 00009 #import <Cocoa/Cocoa.h> 00010 #import "LLVector.h" 00011 00012 @interface LLTarget : LLVector { 00013 00014 } 00015 00016 -(NSPoint) position; 00017 -(int) course; 00018 -(int) speed; 00019 -(void) setPosition:(NSPoint) pos; 00020 -(void) setCourse: (int) course; 00021 -(void) setSpeed: (int) newSize; 00022 00023 @end