Source upload

This commit is contained in:
SDraw 2022-03-21 12:29:49 +00:00 committed by SDraw
parent 50162481eb
commit 51ad6da4c3
No known key found for this signature in database
GPG key ID: BB95B4DAB2BB8BB5
51 changed files with 14957 additions and 0 deletions

12
ml_lme_cvr/Utils.cs Normal file
View file

@ -0,0 +1,12 @@
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;
}
}
}