Last active
December 17, 2015 14:29
-
-
Save uzzu/5624980 to your computer and use it in GitHub Desktop.
The code template for UnityEngine::MonoBehaviour.
Copy to /Application/Unity/MonoDevelop.app/Contents/Resources/ScriptTemplates
This file contains 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 #SCRIPTNAME# : MonoBehaviour | |
{ | |
#region inner classes, enum, and structs | |
#endregion | |
#region constants | |
#endregion | |
#region properties | |
#endregion | |
#region public methods | |
#endregion | |
#region override unity methods | |
#endregion | |
#region private methods | |
#endregion | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment