te
This commit is contained in:
parent
01151e679b
commit
57b2f0400e
265 changed files with 22828 additions and 6 deletions
25
Unused/Decal.Adapter/EatableEventArgs.cs
Normal file
25
Unused/Decal.Adapter/EatableEventArgs.cs
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue