A game about forced loneliness, made by TACStudios
1namespace Unity.VisualScripting 2{ 3 /// <summary> 4 /// Returns the remainder of the division of two objects. 5 /// </summary> 6 [UnitCategory("Math/Generic")] 7 [UnitTitle("Modulo")] 8 public sealed class GenericModulo : Modulo<object> 9 { 10 public override object Operation(object a, object b) 11 { 12 return OperatorUtility.Modulo(a, b); 13 } 14 } 15}