Last active
November 6, 2019 13:47
-
-
Save TheCuttlefish/be058731e8c4c2eae4d9411e259cbcd4 to your computer and use it in GitHub Desktop.
Exposed class in Unity
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 System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class PlayerClass : MonoBehaviour | |
{ | |
// Start is called before the first frame update | |
[System.Serializable] | |
public class Player{ | |
public bool jump; | |
public bool run; | |
public AnimationCurve ani; | |
public Color colour; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment