2025-03-24 14:42:29 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
2025-06-12 16:08:12 +08:00
|
|
|
using BITKit;
|
2025-03-24 14:42:29 +08:00
|
|
|
using BITKit.WorldNode;
|
|
|
|
using Unity.Mathematics;
|
2025-06-12 16:08:12 +08:00
|
|
|
using UnityEngine;
|
2025-03-24 14:42:29 +08:00
|
|
|
|
|
|
|
namespace Net.Project.B.Mark
|
|
|
|
{
|
|
|
|
public interface IMarkType{}
|
|
|
|
public interface IMarkComponent
|
|
|
|
{
|
2025-06-12 16:08:12 +08:00
|
|
|
}
|
|
|
|
[Serializable]
|
|
|
|
public class NameMark:IWorldNode
|
|
|
|
{
|
|
|
|
#if UNITY_5_3_OR_NEWER
|
|
|
|
[SerializeReference, SubclassSelector] private IReference name;
|
|
|
|
public string Name => name?.Value;
|
|
|
|
#endif
|
2025-03-24 14:42:29 +08:00
|
|
|
}
|
2025-04-14 15:39:24 +08:00
|
|
|
public class PositionMark:IMarkComponent{}
|
2025-03-24 14:42:29 +08:00
|
|
|
}
|