Project290.Screens.Shared.HypercubeDisplay.Update C# (CSharp) Method

Update() public method

Updates this instance.
public Update ( ) : void
return void
        public void Update()
        {
            foreach (Hypercube hypercube in this.hypercubes)
            {
                hypercube.Update();
            }
        }