Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 618 Bytes

File metadata and controls

25 lines (20 loc) · 618 Bytes

Unity3D Script Header

Unity3D Script Header adds license to your new script.

Usage

  • Download package from releases.
  • Install ScriptHeader.unitypackage to your project.

Example

#region License
// ====================================================
// Product:    #PRODUCTNAME#
// Developer:  #DEVELOPERNAME#
// Date:       #DATE#
// Copyright (c) #YEAR# #COMPANYNAME#. All rights reserved.
// ====================================================
#endregion

using UnityEngine;

public class NewMonoBehaviour : MonoBehaviour
{

}