Files
hw-pixelone-course-creating…/Platformer/Assets/Scripts/IObjectDestroyer.cs

5 lines
95 B
C#
Raw Normal View History

2023-06-11 00:35:07 +03:00
using UnityEngine;
public interface IObjectDestroyer {
void Destroy(GameObject gameObj);
}