Net.Project.B/Src/Mark/MarkComponent.cs

15 lines
285 B
C#
Raw Normal View History

2025-03-24 14:42:29 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.WorldNode;
using Unity.Mathematics;
namespace Net.Project.B.Mark
{
public interface IMarkType{}
public interface IMarkComponent
{
}
2025-04-14 15:39:24 +08:00
public class PositionMark:IMarkComponent{}
2025-03-24 14:42:29 +08:00
}