PoolController.cs 201 B

1234567
  1. using System;
  2. using System.Collections.Generic;
  3. public static class PoolController
  4. {
  5. public static readonly Dictionary<string, ObjectPool> EffectDict = new Dictionary<string, ObjectPool>();
  6. }