route markers in map, fix cubemap rendering in menu
[carveJwlIkooP6JGAAIwe30JlM.git] / network_msg.h
index ba1fefef309bc6a62cebdb0a2ea2829277425203..42976ebb5e6e699828821ce66bf051b9a9bf8cea 100644 (file)
@@ -87,7 +87,7 @@ struct netmsg_playerframe{
    f64 timestamp;
 
    u8 client, subsystem, 
-      instance_id;
+      instance_id, sound_effects;
    u16 boundary_hash; /* used for animating correctly through gates, teleport..
                          msb is a flip flop for teleporting
                          second msb is flip flop for gate 
@@ -139,6 +139,13 @@ enum netmsg_playeritem_type {
    k_netmsg_playeritem_max
 };
 
+typedef struct netmsg_chat netmsg_chat;
+enum{ k_inetmsg_chat = 205 };
+struct netmsg_chat {
+   u16 inetmsg_id;
+   u8 client;
+   char msg[];
+};
 
 #pragma pack(pop)
 #endif /* NETWORK_MSG_H */