
Namespaces
Tutorial
intermediate
+0XP
5 mins
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 ()
{
}
}
}