Skip to content

Instantly share code, notes, and snippets.

@murapong
Last active February 4, 2023 04:50
Show Gist options
  • Save murapong/5543f720c8ca963395a4 to your computer and use it in GitHub Desktop.
Save murapong/5543f720c8ca963395a4 to your computer and use it in GitHub Desktop.
UnityのC#テンプレート
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class #SCRIPTNAME# : MonoBehaviour
{
#region enum
#endregion
#region const
#endregion
#region public property
#endregion
#region private property
#endregion
#region public method
#endregion
#region private method
#endregion
#region event
void Start()
{
}
void Update()
{
}
#endregion
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment