sdraw_mods_cvr/ml_lme_cvr/Utils.cs
2022-03-21 15:31:16 +03:00

12 lines
213 B
C#

namespace ml_lme_cvr
{
static class Utils
{
public static void Swap<T>(ref T lhs, ref T rhs)
{
T temp = lhs;
lhs = rhs;
rhs = temp;
}
}
}