IBlowable.cs 166 B

1234567891011
  1. using System;
  2. using UnityEngine;
  3. public interface IBlowable
  4. {
  5. void _OnWindEnter(IBlowee wind);
  6. void _OnWindExit(IBlowee wind);
  7. Bounds GetBounds();
  8. }