1
0
mirror of https://github.com/lidgren/lidgren-network-gen3.git synced 2026-05-15 14:46:29 +09:00
Files
lidgren-network-gen3/Lidgren.Network/Encryption/INetEncryption.cs

15 lines
219 B
C#

using System;
using System.Collections.Generic;
namespace Lidgren.Network
{
public interface INetEncryption
{
bool Encrypt(NetOutgoingMessage msg);
bool Decrypt(NetIncomingMessage msg);
}
}