A game about forced loneliness, made by TACStudios
1using System;
2
3namespace Unity.VisualScripting
4{
5 /// <summary>
6 /// Returns the sum of two objects.
7 /// </summary>
8 [UnitCategory("Math/Generic")]
9 [UnitTitle("Add")]
10 [RenamedFrom("Bolt.GenericAdd")]
11 [RenamedFrom("Unity.VisualScripting.GenericAdd")]
12 [Obsolete("Use the new \"Add (Math/Generic)\" node instead.")]
13 public sealed class DeprecatedGenericAdd : Add<object>
14 {
15 public override object Operation(object a, object b)
16 {
17 return OperatorUtility.Add(a, b);
18 }
19 }
20}