7 lines
101 B
C#
7 lines
101 B
C#
using System;
|
|
|
|
public interface IUnitySegment
|
|
{
|
|
event Action<String> OnSegmentRecieved;
|
|
}
|