Skip to content

Instantly share code, notes, and snippets.

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 WeirdBeardDev/0b67dbe7ec4e1f2543b7849e4006a151 to your computer and use it in GitHub Desktop.
Save WeirdBeardDev/0b67dbe7ec4e1f2543b7849e4006a151 to your computer and use it in GitHub Desktop.
A Unity script template for POCO scripts.
using System.Collections;
using System.Collections.Generic;
[System.Serializable]
public class #SCRIPTNAME#
{
#region Members
private const string DName = nameof(#SCRIPTNAME#); // Debug name
#endregion Members
#region Properties
#endregion Properties
#region Ctor
#endregion Ctor
#region Methods
#endregion Methods
#region Helpers
#endregion Helpers
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment