namespace Unity.VisualScripting { /// /// Returns the remainder of the division of two objects. /// [UnitCategory("Math/Generic")] [UnitTitle("Modulo")] public sealed class GenericModulo : Modulo { public override object Operation(object a, object b) { return OperatorUtility.Modulo(a, b); } } }