mta-mono/MultiTheftAuto/EventArgs/PlayerModInfoEventArgs.cs

27 lines
479 B
C#
Raw Normal View History

2015-12-12 10:10:23 +00:00
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;
}
}
}