Skip to content

Instantly share code, notes, and snippets.

@AlexanderBrevigSublime
Created October 1, 2012 09:47
Show Gist options
  • Save AlexanderBrevigSublime/3810604 to your computer and use it in GitHub Desktop.
Save AlexanderBrevigSublime/3810604 to your computer and use it in GitHub Desktop.
Unity: New MonoBehaviour
using UnityEngine;
using System.Collections;
using System;
public class CLASS_NAME : MonoBehaviour
{
public void Start() {
//
}
public void Update() {
//
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment