/************************************************************************************************************************/ /// <summary> /// If the <see cref="EventPoolCount"/> is less than the specified value, this method increases it to that /// value by creating new objects. /// </summary> public static void SetMinEventPoolCount(int count) { ObjectPool <EventRunner> .SetMinCount(count); }