ICallBackable.cs 72 B

123456
  1. using System;
  2. public interface ICallBackable
  3. {
  4. void OnCall();
  5. }