using System; using System.Collections.Generic; using System.Text; namespace Torch.Mod.Messages { /// /// shim to store incoming message data /// internal class IncomingMessage : MessageBase { public IncomingMessage() { } public override void ProcessClient() { throw new Exception(); } public override void ProcessServer() { throw new Exception(); } } }