15 lines
236 B
C#
15 lines
236 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class Costume
|
|
{
|
|
public string costumeName;
|
|
public GameObject[] meshes;
|
|
public Material[] meshMaterials;
|
|
|
|
}
|
|
|