This commit is contained in:
CortexCore
2025-06-12 16:08:12 +08:00
parent 4c2534a6e9
commit a772331918
10 changed files with 108 additions and 2 deletions

View File

@@ -1,14 +1,24 @@
using System;
using System.Collections;
using System.Collections.Generic;
using BITKit;
using BITKit.WorldNode;
using Unity.Mathematics;
using UnityEngine;
namespace Net.Project.B.Mark
{
public interface IMarkType{}
public interface IMarkComponent
{
}
[Serializable]
public class NameMark:IWorldNode
{
#if UNITY_5_3_OR_NEWER
[SerializeReference, SubclassSelector] private IReference name;
public string Name => name?.Value;
#endif
}
public class PositionMark:IMarkComponent{}
}