Files
Fishing2/Assets/Scripts/Configs~/Mem/LeadersConfig.cs
2025-10-10 17:57:36 +08:00

19 lines
317 B
C#

using System;
using UnityEngine;
namespace NBF
{
[TableName("gameLeaders")]
public partial class LeadersConfig : ConfigGearBase
{
public enum Type
{
Mono = 0,
Wire = 1,
Steel = 2,
Titanium = 3
}
public Type type;
}
}