blob: d147b89d4c42ce8d02faa7a5ed0e7a7114c46deb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.WebRTC
{
public class VideoFrameReceivedEventArgs : EventArgs
{
public Bitmap Bitmap { get; set; }
}
}
|