00001 // 00002 // BaseView.h 00003 // MacTrek 00004 // 00005 // Created by Aqua on 24/07/2006. 00006 // Copyright 2006 __MyCompanyName__. All rights reserved. 00007 // 00008 00009 #import <Cocoa/Cocoa.h> 00010 #import "Luky.h" 00011 #import "Universe.h" 00012 00013 00014 @interface BaseView : NSView { 00015 LLNotificationCenter *notificationCenter; 00016 Universe *universe; 00017 } 00018 00019 - (NSPoint) mousePos; 00020 00021 @end