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

15 lines
285 B
C#

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
{
}
public class PositionMark:IMarkComponent{}
}