表格重构

This commit is contained in:
2025-10-10 17:57:36 +08:00
parent bf2f6d2680
commit bf7b1bbbb2
133 changed files with 4481 additions and 1366 deletions

View File

@@ -0,0 +1,26 @@
using System;
using UnityEngine;
namespace NBF
{
[TableName("gameWeights")]
public partial class WeightConfig : ConfigGearBase
{
protected override string ModelRoot => "GameItemsPrefabs/";
public enum Type
{
Ball = 0,
Teardrop = 1,
Olive = 2
}
public Type type;
public float weight = 0.1f;
public int Level = 1;
public int amount = 1;
}
}