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

24 lines
510 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MultiTheftAuto.EventArgs
{
public class SettingChangeEventArgs : ElementEventArgs
{
public SettingChangeEventArgs( Element _this, string setting, string oldValue, string newValue )
: base( _this )
{
this.Setting = setting;
this.OldValue = oldValue;
this.NewValue = newValue;
}
public string Setting;
public string OldValue;
public string NewValue;
}
}