Skip to content

Instantly share code, notes, and snippets.

@smkplus
Created April 16, 2020 07:04
Show Gist options
  • Save smkplus/444f96a8963c5090159771bc36995f34 to your computer and use it in GitHub Desktop.
Save smkplus/444f96a8963c5090159771bc36995f34 to your computer and use it in GitHub Desktop.
using UnityEngine;
using System.Collections;
public class grouping: MonoBehaviour {
[System.Serializable]
public class class1{
public enum myEnum {one,two,three};
public myEnum[] row;
public string name;
public int price;
}
public class1[] array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment