9 #include "GlobalHeader.h"
11 template<
typename T>
class Pool {
19 Pool(
int sz = 0) : size(sz) { data = std::vector<T>(sz); }
22 T &operator[](uint index) {
26 const T &operator[](uint index)
const {
30 void Push(
const T &t) {
31 if (size == data.size())