Namespaces

Tutorial

·

intermediate

·

+10XP

·

5 mins

·

(1294)

Unity Technologies

Namespaces

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 () 
        {

        }
    }
}

Complete this tutorial