13 lines
241 B
C#
13 lines
241 B
C#
namespace Questionable.Controller.CombatModules;
|
|
|
|
internal static class WrathResultExtensions
|
|
{
|
|
public static bool IsSuccess(this WrathComboModule.ESetResult result)
|
|
{
|
|
if ((uint)result <= 1u)
|
|
{
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
}
|