15 lines
175 B
C#
15 lines
175 B
C#
|
using System;
|
||
|
namespace UnityEngine.UIElements.Expansions
|
||
|
{
|
||
|
public interface IPlayback
|
||
|
{
|
||
|
bool IsPlaying
|
||
|
{
|
||
|
get;
|
||
|
}
|
||
|
void Play();
|
||
|
void Stop();
|
||
|
void Pause();
|
||
|
}
|
||
|
}
|