Skip to content

Instantly share code, notes, and snippets.

@Problematic
Created August 16, 2014 19:44
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 Problematic/4d03a1c1ecc00c82e336 to your computer and use it in GitHub Desktop.
Save Problematic/4d03a1c1ecc00c82e336 to your computer and use it in GitHub Desktop.
Default new Unity script
using UnityEngine;
using System.Collections;
public class FooScript : MonoBehaviour
{
// Use this for initialization
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment