10 lines
159 B
C#
10 lines
159 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NeoFPS.CharacterMotion
|
|||
|
{
|
|||
|
public interface IMotionGraphElement
|
|||
|
{
|
|||
|
void CheckReferences(IMotionGraphMap map);
|
|||
|
}
|
|||
|
}
|