mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 14:18:20 -05:00
15 lines
427 B
C#
15 lines
427 B
C#
namespace SharedLibraryCore.Commands
|
|
{
|
|
public static class CommandExtensions
|
|
{
|
|
public static bool IsTargetingSelf(this GameEvent gameEvent)
|
|
{
|
|
return gameEvent.Origin?.Equals(gameEvent.Target) ?? false;
|
|
}
|
|
|
|
public static bool CanPerformActionOnTarget(this GameEvent gameEvent)
|
|
{
|
|
return gameEvent.Origin?.Level > gameEvent.Target?.Level;
|
|
}
|
|
}
|
|
} |