Files
Ragon/Ragon.Common/Sources/RagonTarget.cs
T

10 lines
122 B
C#
Raw Normal View History

2022-07-31 19:06:56 +04:00
namespace Ragon.Common
{
public enum RagonTarget: byte
{
2022-09-10 10:25:45 +04:00
Owner,
ExceptOwner,
2022-11-13 18:53:56 +04:00
ExceptInvoker,
2022-09-10 10:25:45 +04:00
All,
2022-07-31 19:06:56 +04:00
}
}