Initial Commit
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
namespace Zenject
|
||||
{
|
||||
public enum PoolExpandMethods
|
||||
{
|
||||
OneAtATime,
|
||||
Double,
|
||||
Disabled
|
||||
}
|
||||
|
||||
[NoReflectionBaking]
|
||||
public class MemoryPoolBindInfo
|
||||
{
|
||||
public MemoryPoolBindInfo()
|
||||
{
|
||||
ExpandMethod = PoolExpandMethods.OneAtATime;
|
||||
MaxSize = int.MaxValue;
|
||||
}
|
||||
|
||||
public PoolExpandMethods ExpandMethod
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
public int InitialSize
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
public int MaxSize
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user