furnace/src/engine/orders.h

12 lines
165 B
C
Raw Normal View History

2022-01-27 05:29:16 +00:00
#ifndef _ORDERS_H
#define _ORDERS_H
struct DivOrders {
2022-01-08 06:57:37 +00:00
unsigned char ord[DIV_MAX_CHANS][128];
DivOrders() {
2022-01-08 06:57:37 +00:00
memset(ord,0,DIV_MAX_CHANS*128);
}
};
2022-01-27 05:29:16 +00:00
#endif