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

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;
}
}