cfclient/Mtb/Equip.cs
2024-05-18 20:34:18 +08:00

19 lines
415 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mtb
{
class Equip : F6.BaseTable
{
[F6.MetaTableField(fieldName = "id")]
public readonly int id;
public readonly float f1;
public readonly double f2;
public readonly string f3;
public readonly long f4;
}
}