DotN64/DotN64/IVideoOutput.cs

12 lines
222 B
C#

namespace DotN64
{
using static RCP.RealityCoprocessor;
public interface IVideoOutput
{
#region Methods
void Draw(VideoFrame frame, VideoInterface vi, RDRAM ram);
#endregion
}
}