chiark / gitweb /
Proper Subversion configuration.
[newkind] / pilot.h
CommitLineData
84bbd123 1/*
2 * Elite - The New Kind.
3 *
4 * Reverse engineered from the BBC disk version of Elite.
5 * Additional material by C.J.Pinder.
6 *
7 * The original Elite code is (C) I.Bell & D.Braben 1984.
8 * This version re-engineered in C by C.J.Pinder 1999-2001.
9 *
10 * email: <christian@newkind.co.uk>
11 *
12 *
13 */
14
15/*
16 * pilot.h
17 */
18
19#ifndef PILOT_H
20#define PILOT_H
21
22void fly_to_vector (struct univ_object *ship, Vector vec);
23void auto_pilot_ship (struct univ_object *ship);
24void engage_auto_pilot (void);
25void disengage_auto_pilot (void);
26
27#endif
28