feture match with master

This commit is contained in:
2026-09-11 03:50:43 +01:00
parent bcaf026ef5
commit 79bc676f49
16 changed files with 293 additions and 11 deletions
+10
View File
@@ -0,0 +1,10 @@
// this code is licenced under Wrathmark licence
// © 2026 wullie wulliestudio.com
// please see attached licence for full usage and rights
#include "stdWullie/namespaces/random.h"
int randomChoice(int min, int max){
int ranged = min + (random.xor32() % (max - min + 1));
return ranged;
}