19 lines
317 B
C#
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;
|
|
}
|
|
} |