Namespaces
Tutorial
·
intermediate
·
+10XP
·
5 mins
·
(1294)
Unity Technologies

How to create and use namespaces to organize your classes.
1. Namespaces
SomeClass
using UnityEngine;
using System.Collections;
namespace SampleNamespace
{
public class SomeClass : MonoBehaviour
{
void Start ()
{
}
}
}