mirror of
https://github.com/ChronosX88/mta-mono.git
synced 2024-11-22 18:22:20 +00:00
27 lines
479 B
C#
27 lines
479 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MultiTheftAuto.EventArgs
|
|||
|
{
|
|||
|
public class PlayerModInfoEventArgs : ElementEventArgs
|
|||
|
{
|
|||
|
public PlayerModInfoEventArgs( Element _this, string filename, PlayerModInfo [] list )
|
|||
|
: base( _this )
|
|||
|
{
|
|||
|
this.FileName = filename;
|
|||
|
this.List = list;
|
|||
|
}
|
|||
|
|
|||
|
public PlayerModInfo [] List;
|
|||
|
|
|||
|
public string FileName
|
|||
|
{
|
|||
|
private set;
|
|||
|
get;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|