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

11 lines
134 B
C#
Raw Permalink 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-12-16 00:05:46 +04:00
ExceptInvoker,
2022-09-10 10:25:45 +04:00
All,
2022-12-16 00:05:46 +04:00
Player,
2022-07-31 19:06:56 +04:00
}
}