Files
2026-07-10 15:25:05 +08:00

22 lines
523 B
C#

namespace LSServerService
{
using System;
using System.Runtime.InteropServices;
[StructLayout(LayoutKind.Sequential, Pack=1)]
public struct C2S_DeleteFile
{
public const uint ID = 22;
public MsgHeader header;
public int dwFileId;
public C2S_DeleteFile(bool autoSet)
{
this.header = new MsgHeader();
this.dwFileId = 0;
this.header.dwType = 22;
this.header.dwLen = (uint) Marshal.SizeOf(this);
}
}
}