15 lines
255 B
C#
15 lines
255 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
public class ChangeSettingsFlagsEventArgs : EventArgs
|
|
{
|
|
private int mySettings;
|
|
|
|
public int Settings => mySettings;
|
|
|
|
internal ChangeSettingsFlagsEventArgs(int settings)
|
|
{
|
|
mySettings = settings;
|
|
}
|
|
}
|