1 /*
2  * LPController.h
3 
4  * Copyright 2004-2011 The Free Software Foundation
5  *
6  * Copyright (C) 2004 Banlu Kemiyatorn.
7  * July 19, 2004
8  * Written by Banlu Kemiyatorn <object at gmail dot com>
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13 
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18 
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the Free
21  * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
22  */
23 
24 #import <AppKit/AppKit.h>
25 #import "LapisPuzzleView.h"
26 
27 @interface LPController : NSObject <LPViewOwner>
28 {
29 	IBOutlet LapisPuzzleView *lpview1;
30 	IBOutlet LapisPuzzleView *lpview2;
31 
32 	IBOutlet id attackList;
33 	IBOutlet id next1;
34 	IBOutlet id next2;
35 
36 	NSMutableArray *attackArray;
37 	NSTimer *tick;
38 }
39 - (IBAction) restart:(id)sender;
40 - (void) player:(id)pl processStone:(int)num;
41 @end
42