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
{
void onExplosion();
}