projekt-bombs/Assets/Scripts/src/Interfaces/IExplosable.cs

9 lines
141 B
C#
Raw Normal View History

2019-06-08 12:25:09 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public interface IExplosable
{
2019-08-21 16:23:28 +00:00
void OnExplosion();
2019-06-08 12:25:09 +00:00
}