ConfigComponent.cs 224 B

12345678910
  1. using System;
  2. using System.Collections.Generic;
  3. namespace KYFramework
  4. {
  5. public class ConfigComponent : Component
  6. {
  7. public Dictionary<Type, ACategory> allConfig = new Dictionary<Type, ACategory>();
  8. }
  9. }