callback_table.h
author truelight
Sat, 15 Jan 2005 19:06:22 +0000
changeset 1024 9b06b01490a4
parent 543 e3b43338096b
child 2163 637ec3c361f5
permissions -rw-r--r--
(svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
-Codechange: renamed all 'schedule' stuff to 'order(list)'
-Codechange: moved all order-stuff to order_cmd.c / order.h
-Codechange: vehicles that share orders are now linked to eachother
with next_shared/prev_shared in Vehicle

Developers: please use AssignOrder to assign data to an order. If not,
you _WILL_ make the save-routine to assert!
#ifndef CALLBACK_TABLE_H
#define CALLBACK_TABLE_H

extern CommandCallback *_callback_table[];
extern const int _callback_table_count;

#endif