22 lines
378 B
C#
22 lines
378 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Random = System.Random;
|
|
using UnityEngine;
|
|
|
|
namespace OHM.UnityToolkit
|
|
{
|
|
public static class RandomPoolUtils
|
|
{
|
|
private static int getPoolMaxValue<RET, ET>(List<RET> pool)
|
|
{
|
|
return default(int);
|
|
}
|
|
|
|
public static ET DrawElementFromPool<RET, ET>(Random random, List<RET> pool)
|
|
{
|
|
return default(ET);
|
|
}
|
|
|
|
}
|
|
}
|