Last active
February 8, 2020 07:41
-
-
Save QuantumCalzone/b6795e4f519f5fb3ec56014def9b20c4 to your computer and use it in GitHub Desktop.
My personal Unity C# script template.
This file contains hidden or 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
// Copyright (c) 2020 - @QuantumCalzone | |
using UnityEngine; | |
/// <summary> | |
/// Description | |
/// </summary> | |
public class #SCRIPTNAME# : MonoBehaviour { | |
#region Fields | |
#endregion | |
#region Properties | |
#endregion | |
#region Unity Events | |
#endregion | |
#region Methods | |
#endregion | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment