Skip to content

Instantly share code, notes, and snippets.

@uzzu
Last active December 17, 2015 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uzzu/5624980 to your computer and use it in GitHub Desktop.
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
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