forked from derandark/PhatAC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChatMsgs.h
More file actions
14 lines (11 loc) · 700 Bytes
/
ChatMsgs.h
File metadata and controls
14 lines (11 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once
class NetFood;
class CPhysicsObj;
class CBasePlayer;
extern NetFood *ChannelChat(DWORD dwChannel, const char* szName, const char* szText);
extern NetFood *LocalChat(const char *szText, const char* szName, DWORD dwSourceID, long lColor = 2);
extern NetFood *ActionChat(const char *szText, const char* szName, DWORD dwSourceID);
extern NetFood *EmoteChat(const char *szText, const char* szName, DWORD dwSourceID);
extern NetFood *ServerText(const char *szText, long lColor = 0);
extern NetFood *ServerBroadcast(const char *szSource, const char *szText, long lColor = 0);
extern NetFood *DirectChat(const char* szText, const char* szName, DWORD dwSourceID, DWORD dwDestID, long lColor);