7 lines
218 B
C#
7 lines
218 B
C#
|
namespace Syntriax.Engine.Core.Abstract;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Indicates the class implementing it has Assignable fields that are necessary for the engine to work properly.
|
||
|
/// </summary>
|
||
|
public interface IAssignable { }
|