MosswartMassacre/Unused/Decal.Adapter/EatableEventArgs.cs
2025-06-09 02:03:11 +02:00

25 lines
254 B
C#

using System;
namespace Decal.Adapter;
public class EatableEventArgs : EventArgs
{
private bool myEat;
public bool Eat
{
get
{
return myEat;
}
set
{
myEat = value;
}
}
internal EatableEventArgs(bool eat)
{
myEat = eat;
}
}