You've already forked Dpr-ScriptsOnly
mirror of
https://github.com/izzy2lost/Dpr-ScriptsOnly.git
synced 2026-03-10 11:49:05 -07:00
26 lines
329 B
C#
26 lines
329 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
public struct MYSTATUS_COMM
|
|
{
|
|
public void SetupFromPlayerWork()
|
|
{
|
|
}
|
|
|
|
public uint id;
|
|
|
|
public string name;
|
|
|
|
public bool sex;
|
|
|
|
public byte lang;
|
|
|
|
public byte fashion;
|
|
|
|
public byte body_type;
|
|
|
|
public byte hat;
|
|
|
|
public byte shoes;
|
|
}
|