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