Skip to content

Commit de8af23

Browse files
committed
removed Serializable attribute from PathTransition
1 parent 3b6c09e commit de8af23

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Code/Runtime/OlegHcp/Pathfinding/IPathNode.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
1+
using System.Collections.Generic;
32

43
namespace OlegHcp.Pathfinding
54
{
@@ -8,9 +7,6 @@ public interface IPathNode
87
IReadOnlyList<PathTransition> GetTransitions();
98
}
109

11-
#if UNITY
12-
[Serializable]
13-
#endif
1410
public struct PathTransition
1511
{
1612
public IPathNode Neighbor { get; }

0 commit comments

Comments
 (0)