Skip to content

Instantly share code, notes, and snippets.

@MighteeCactus
Created December 17, 2015 00:07
Show Gist options
  • Save MighteeCactus/3520f77dc62e8b4b1bf1 to your computer and use it in GitHub Desktop.
Save MighteeCactus/3520f77dc62e8b4b1bf1 to your computer and use it in GitHub Desktop.
class Foo: MonoBehaviour
{
[SerializedField] int Bar;
void Start()
{
Debug.Log("Hello gist!");
}
void Update()
{
Bar++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment