移除无用脚本

This commit is contained in:
Bob.Song
2025-12-24 18:02:47 +08:00
parent 240bee00c3
commit 917d82d3e8
6 changed files with 10 additions and 68 deletions

View File

@@ -26,7 +26,7 @@ public class MapRoom : Entity
/// 房间玩家
/// </summary>
public Dictionary<long, Player> Units = new Dictionary<long, Player>();
/// <summary>
/// 房主
/// </summary>

View File

@@ -17,11 +17,6 @@ public class MapUnitComponent : Entity
/// 旋转
/// </summary>
public float3 Rotation;
/// <summary>
/// 钓组信息
/// </summary>
public List<MapUnitGear> Gears = new List<MapUnitGear>();
/// <summary>
/// 房间Id

View File

@@ -1,42 +0,0 @@
using Fantasy.Entitas;
using Unity.Mathematics;
namespace NB.Game;
public enum MapGearState
{
None = 0,
Take = 1,
Put = 2,
}
/// <summary>
/// 钓组信息
/// </summary>
public class MapUnitGear : Entity
{
/// <summary>
/// 杆子
/// </summary>
public long Item;
/// <summary>
/// 杆子配件
/// </summary>
public List<long> Rings = new List<long>();
/// <summary>
/// 杆子状态
/// </summary>
public MapGearState State;
/// <summary>
/// 位置
/// </summary>
public float3 Position;
/// <summary>
/// 旋转
/// </summary>
public float3 Rotation;
}