Level Proto Done, Pool done

This commit is contained in:
2023-07-19 22:41:46 +05:30
parent 6918aec205
commit 7ad61c714d
16 changed files with 1489 additions and 135 deletions

View File

@@ -12,4 +12,9 @@ public class Range{
public float GetRandom(){
return Random.Range(min,max);
}
public override string ToString()
{
return $"min:{min}, max:{max}";
}
}