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