HKI Core
IInit.cs
Go to the documentation of this file.
1 using UnityEngine;
2 
3 namespace HKI.Core.Init
4 {
8  public interface IInit
9  {
10  // Interface function
11  void Init();
12  }
13 }
This interface allows the initialization of anything by the Initialzer.
Definition: IInit.cs:8