11 lines
191 B
C#
11 lines
191 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace HP.Generics
|
|
{
|
|
public interface IInitable
|
|
{
|
|
bool IsInitDone() { return true; }
|
|
}
|
|
} |