1 /*
2 
3 Copyright (C) 2015-2018 Night Dive Studios, LLC.
4 
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9 
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14 
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 
18 */
19 #ifndef __EDITLOOP_H
20 #define __EDITLOOP_H
21 
22 /*
23  * $Source: q:/inc/RCS/editloop.h $
24  * $Revision: 1.7 $
25  * $Author: xemu $
26  * $Date: 1993/09/02 23:07:29 $
27  *
28  * $Log: editloop.h $
29  * Revision 1.7  1993/09/02  23:07:29  xemu
30  * angle me baby
31  *
32  * Revision 1.6  1993/06/06  00:44:21  xemu
33  * real rendering change flags
34  *
35  * Revision 1.5  1993/05/23  19:01:19  xemu
36  * removed time flags
37  *
38  * Revision 1.4  1993/05/18  15:18:54  xemu
39  * new time constants
40  *
41  * Revision 1.3  1993/05/14  15:49:43  xemu
42  * change flags
43  *
44  * Revision 1.2  1993/05/12  14:20:10  xemu
45  * actual prototype for the loop
46  *
47  *
48  */
49 
50 // Includes
51 
52 // C Library Includes
53 
54 // System Library Includes
55 
56 // Master Game Includes
57 
58 // Game Library Includes
59 
60 // Game Object Includes
61 
62 // Defines
63 #define EDITVIEW_UPDATE LL_CHG_BASE << 1
64 
65 // Prototypes
66 void edit_loop(void);
67 
68 // Globals
69 
70 #endif // __EDITLOOP_H
71