ProfileKeywordSection.cs 624 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. namespace Funly.SkyStudio
  6. {
  7. [Serializable]
  8. public class ProfileFeatureSection
  9. {
  10. public string sectionTitle;
  11. public string sectionKey;
  12. public string sectionIcon;
  13. public ProfileFeatureDefinition[] featureDefinitions;
  14. public ProfileFeatureSection(string sectionTitle, string sectionKey, ProfileFeatureDefinition[] featureDefinitions)
  15. {
  16. this.sectionTitle = sectionTitle;
  17. this.sectionKey = sectionKey;
  18. this.featureDefinitions = featureDefinitions;
  19. }
  20. }
  21. }