bingo 项目提交
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace BingoBrain
|
||||
{
|
||||
public static class RandomKit
|
||||
{
|
||||
public static int RandomRange(int begin, int end)
|
||||
{
|
||||
return Random.Range(begin, end);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user