home *** CD-ROM | disk | FTP | other *** search
- /*
- **
- ** _observe.qh (Observer Header, 1.1)
- **
- ** Copyright (C) 1996 Johannes Plass
- **
- ** This program is free software; you can redistribute it and/or modify
- ** it under the terms of the GNU General Public License as published by
- ** the Free Software Foundation; either version 2 of the License, or
- ** (at your option) any later version.
- **
- ** This program is distributed in the hope that it will be useful,
- ** but WITHOUT ANY WARRANTY; without even the implied warranty of
- ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ** GNU General Public License for more details.
- **
- ** You should have received a copy of the GNU General Public License
- ** along with this program; if not, write to the Free Software
- ** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- **
- ** Author: Johannes Plass (plass@dipmza.physik.uni-mainz.de)
- **
- */
-
-
- .float observer_pos_num;
- .float observer_status;
-
- float OBSERVER_BECOME_OBSERVER = 1;
- float OBSERVER_BUTTON0 = 2;
- float OBSERVER_BUTTON2 = 8;
- float OBSERVER_NEXTVIEW = 16;
- float OBSERVER_RESPAWN = 32;
- float OBSERVER_TOGGLE_NOCLIP = 64;
-
- void(entity player) ObserverInfo;
- void(entity player) ObserverInit;
- void(entity player) ObserverHelp;
- void() ObserverThink;
- void(entity player) ObserverBecomeObserver;
- void(entity player) ObserverNoclip;
- float() ObserverDeathThink;
-
-
-
-
-
-
-
-