With the basic overview out of the way, let's get into the heart of our code. We will go through every line of code, though we will only lightly touch some areas.
First, start with the using statements:
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using HoloToolkit.Unity; using HoloToolkit.Unity.SpatialMapping; using HoloToolkit.Unity.InputModule;
We can access additional functionality outside that of standard C# and .NET libraries through using statements. Let's move forward with the declaration of ApplicationManager:
Class Declaration public class ApplicationManager : Singleton<ApplicationManager>, IInputClickHandler, ISpeechHandler {
This is the declaration ...