sdraw_mods_cvr/ml_lme/Utils.cs
2022-08-02 11:01:57 +03:00

12 lines
209 B
C#

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