11 lines
No EOL
207 B
C#
11 lines
No EOL
207 B
C#
using Unity.Entities;
|
|
using UnityEngine;
|
|
|
|
namespace DefaultNamespace.Navigation
|
|
{
|
|
public struct PathNode : IBufferElementData
|
|
{
|
|
public Vector2 pos;
|
|
public PathNodeConnectionType ConnectionType;
|
|
}
|
|
} |