mta-mono/MultiTheftAuto/EventArgs/SettingChangeEventArgs.cs

24 lines
510 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 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;
}
}