-
Notifications
You must be signed in to change notification settings - Fork 17
/
ScriptTemplate.cs
48 lines (37 loc) · 1.52 KB
/
ScriptTemplate.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// =======================================================================================
// Created and maintained by iMMO
// Usable for both personal and commercial projects, but no sharing or re-sale
// * Discord Support Server.............: https://discord.gg/YkMbDHs
// * Public downloads website...........: https://www.indie-mmo.net
// * Pledge on Patreon for VIP AddOns...: https://www.patreon.com/IndieMMO
// * Instructions.......................: https://indie-mmo.net/knowledge-base/
// =======================================================================================
using UnityEngine;
// =======================================================================================
// CHANGE ME
// =======================================================================================
public partial class ChangeMe : MonoBehaviour
{
#region Variables
[Header("Components")]
public GameObject example;
#endregion
#region Unity Functions
// -----------------------------------------------------------------------------------
// Start
// Place a lovely description here.
// -----------------------------------------------------------------------------------
private void Start()
{
}
#endregion
#region Custom Functions
// -----------------------------------------------------------------------------------
// Example
// Place a lovely description here.
// -----------------------------------------------------------------------------------
private void Example()
{
}
#endregion
}