Files
crtr/Assets/Cryville/Common/Math/IVectorOperator.cs
2022-09-30 17:32:21 +08:00

7 lines
138 B
C#

namespace Cryville.Common.Math {
public interface IVectorOperator<T> {
T Add(T lhs, T rhs);
T ScalarMultiply(float lhs, T rhs);
}
}