25 lines
393 B
C#
25 lines
393 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace NBF
|
|
{
|
|
[TableName("gameFeeders")]
|
|
public partial class FeederConfig : ConfigGearBase
|
|
{
|
|
public enum Type
|
|
{
|
|
Feeder = 0
|
|
}
|
|
|
|
public Type type;
|
|
|
|
public float weight = 10f;
|
|
|
|
public float capacity = 10f;
|
|
|
|
public int Level = 1;
|
|
|
|
public int amount = 1;
|
|
|
|
}
|
|
} |