This commit is contained in:
2023-07-19 00:28:23 +05:30
commit 6918aec205
136 changed files with 15958 additions and 0 deletions

15
Assets/Scripts/Helpers.cs Normal file
View File

@@ -0,0 +1,15 @@
using UnityEngine;
[System.Serializable]
public class Range{
public float min, max;
public Range(float _min, float _max){
min = _min;
max = _max;
}
public float GetRandom(){
return Random.Range(min,max);
}
}