Created
April 16, 2020 07:04
-
-
Save smkplus/444f96a8963c5090159771bc36995f34 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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