nes-proj/project/common/supermarket_net.h

20 lines
285 B
C

#ifndef SUPERMARKET_NET_H
#define SUPERMARKET_NET_H
enum MsgType {
ASSOCIATION_REQUEST_MSG,
ASSOCIATION_REPLY_MSG,
BATTERY_STATUS_MSG,
ASSIGNMENT_MSG,
PRODUCT_MSG,
CASHOUT_MSG,
ITEM_ELEM_MSG
};
struct Msg {
enum MsgType type;
int test;
};
#endif