1 #ifndef _EDITOR_H
2 #define _EDITOR_H
3 /*
4  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
5  *
6  * All source code herein is the property of Volition, Inc. You may not sell
7  * or otherwise commercially exploit the source or things you created based on the
8  * source.
9  *
10  */
11 
12 #include "physics/physics.h"
13 #include "render/3d.h"
14 #include "mission/missiongrid.h"
15 
16 
17 #define MAX_GRID_POINTS		1000
18 
19 void create_object(int objnum, vec3d *pos);
20 
21 void test_form_wing(int x);
22 
23 int select_object(int cx, int cy);
24 
25 void game_init();
26 
27 matrix Grid_gmatrix;
28 
29 vec3d Grid_center;
30 
31 int Show_stars;
32 
33 void rpd_line(vec3d *v0, vec3d *v1);
34 
35 #endif	// _EDITOR_H
36