mta-mono/MultiTheftAuto/EventArgs/PlayerModInfoEventArgs.cs
2015-12-12 13:10:23 +03:00

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;
}
}
}