mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-19 01:45:07 +01:00
14 lines
189 B
C#
14 lines
189 B
C#
using UnityEngine;
|
|
|
|
namespace RenderHeads.Media.AVProVideo
|
|
{
|
|
public interface IMediaProducer
|
|
{
|
|
Texture GetTexture();
|
|
|
|
int GetTextureFrameCount();
|
|
|
|
bool RequiresVerticalFlip();
|
|
}
|
|
}
|