8 lines
147 B
C#
8 lines
147 B
C#
namespace BF
|
|
{
|
|
public interface INetOutgoingMessage
|
|
{
|
|
void Encode(uint group, byte cmd, byte[] data);
|
|
void Reset();
|
|
}
|
|
} |