2012-03-15 17:15:28 +00:00
|
|
|
//
|
|
|
|
|
// KRWBDocument.h
|
|
|
|
|
// KRWorldBuilder
|
|
|
|
|
//
|
|
|
|
|
// Created by Kearwood Gilbert on 12-02-10.
|
|
|
|
|
// Copyright (c) 2012 Kearwood Software. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
2013-01-13 08:10:38 +00:00
|
|
|
class KRContext;
|
2012-06-07 17:19:29 +00:00
|
|
|
|
|
|
|
|
@interface KRWBDocument : NSDocument <NSOutlineViewDelegate, NSOutlineViewDataSource>
|
|
|
|
|
|
2013-01-13 08:10:38 +00:00
|
|
|
@property (nonatomic, readonly) KRContext *world;
|
2012-06-07 17:19:29 +00:00
|
|
|
@property (nonatomic, retain) IBOutlet NSOutlineView *outlineView;
|
2012-03-15 17:15:28 +00:00
|
|
|
|
|
|
|
|
@end
|