15 lines
227 B
C#
15 lines
227 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
public class SettingsEventArgs : EventArgs
|
|
{
|
|
private int mySetting;
|
|
|
|
public int Setting => mySetting;
|
|
|
|
internal SettingsEventArgs(int Setting)
|
|
{
|
|
mySetting = Setting;
|
|
}
|
|
}
|