Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
BaseChatChannel.c
Go to the documentation of this file.
1 /*
2 ===========================================
3 Do not modify, this script is generated
4 ===========================================
5 */
6 
12 class BaseChatChannel: ScriptAndConfig
13 {
15  proto external string GetName();
19  proto external BaseChatChannelStyle GetStyle();
20 
21  // callbacks
22 
23  event protected void OnInit (IEntity owner);
25  event bool IsDelivering(BaseChatComponent sender, BaseChatComponent receiver) { return true; };
27  event bool IsAvailable(BaseChatComponent sender) { return true; };
36  event bool ProcessMessage(BaseChatComponent sender, string message, bool isAuthority) { return true; };
37 }
38 
BaseChatChannelStyle
Definition: BaseChatChannelStyle.c:12
BaseChatChannel
Definition: BaseChatChannel.c:12