BoolGroupDictionary.cs 307 B

12345678910111213
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. namespace Funly.SkyStudio
  6. {
  7. // Subclass to remove templating, so we can serialize this class.
  8. [Serializable]
  9. public class BoolGroupDictionary : SerializableDictionary<string, BoolKeyframeGroup>
  10. {
  11. }
  12. }