12345678910111213141516 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class DressLabel
- {
- public static string Dress_ske = "Dress_ske";
- public static List<string> dressNames = new List<string>
- {
- "上衣14",
- "下衣14",
- "头发14(粉色)",
- "装饰14",
- };
- }
|