using System; namespace RenderHeads.Media.AVProVideo { public interface IMediaPlayer { void OnEnable(); void Update(); void Render(); } }