mirror of
https://gitea.tendokyu.moe/beerpsi/sinmai-mods.git
synced 2025-02-15 10:22:31 +01:00
20 lines
404 B
C#
20 lines
404 B
C#
// ReSharper disable CheckNamespace
|
|
// ReSharper disable InconsistentNaming
|
|
using MonoMod;
|
|
|
|
namespace Net.Packet;
|
|
|
|
public class patch_Packet : Packet
|
|
{
|
|
[MonoModIgnore]
|
|
public override PacketState Proc()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
[MonoModReplace]
|
|
public new static string Obfuscator(string srcStr)
|
|
{
|
|
return srcStr;
|
|
}
|
|
} |