DressLabel.cs 327 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class DressLabel
  5. {
  6. public static string Dress_ske = "Dress_ske";
  7. public static List<string> dressNames = new List<string>
  8. {
  9. "上衣14",
  10. "下衣14",
  11. "头发14(粉色)",
  12. "装饰14",
  13. };
  14. }