Files
Net.Project.B/Src/Mark/MarkComponent.cs
CortexCore 5fceb6f885 1
2025-03-24 14:42:29 +08:00

16 lines
321 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 float3 Position { get; }
public IMarkType MarkType { get; }
}
}