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