mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-22 10:12:20 +00:00
28 lines
644 B
C#
28 lines
644 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MultiTheftAuto.EventArgs
|
|
{
|
|
public class PlayerScreenShotEventArgs : ElementEventArgs
|
|
{
|
|
public PlayerScreenShotEventArgs( Element _this, Resource resource, string status, string imageData, int timestamp, string tag )
|
|
: base( _this )
|
|
{
|
|
this.Resource = resource;
|
|
this.Status = status;
|
|
this.ImageData = imageData;
|
|
this.Timestamp = timestamp;
|
|
this.Tag = tag;
|
|
}
|
|
|
|
public Resource Resource;
|
|
public string Status;
|
|
public string ImageData;
|
|
public int Timestamp;
|
|
public string Tag;
|
|
}
|
|
}
|