20 lines
313 B
C#
20 lines
313 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
public class ChangeOptionEventArgs : EventArgs
|
|
{
|
|
private int myOption;
|
|
|
|
private int myValue;
|
|
|
|
public int Option => myOption;
|
|
|
|
public int Value => myValue;
|
|
|
|
internal ChangeOptionEventArgs(int option, int value)
|
|
{
|
|
myOption = option;
|
|
myValue = value;
|
|
}
|
|
}
|