15 lines
261 B
C#
15 lines
261 B
C#
using System;
|
|
|
|
namespace Decal.Adapter.Wrappers;
|
|
|
|
public class ChangePortalModeEventArgs : EventArgs
|
|
{
|
|
private PortalEventType myType;
|
|
|
|
public PortalEventType Type => myType;
|
|
|
|
internal ChangePortalModeEventArgs(PortalEventType type)
|
|
{
|
|
myType = type;
|
|
}
|
|
}
|