Files
2023-06-11 00:35:07 +03:00

5 lines
95 B
C#

using UnityEngine;
public interface IObjectDestroyer {
void Destroy(GameObject gameObj);
}