AIEditor.Gui.ToolsWindow.ToolsWindow C# (CSharp) Метод

ToolsWindow() публичный Метод

public ToolsWindow ( ) : System
Результат System
        public ToolsWindow()
            : base()
        {
            this.mMoveButton = AddToggleButton(Keys.M);
            this.mMoveButton.Text = "Move";
            this.mMoveButton.SetOverlayTextures(2, 0);

            Texture2D findPathTexture = FlatRedBallServices.Load<Texture2D>(@"Assets\UI\FindPathTo.png", "Global");

            mFindPathToNodeButton = AddToggleButton(Keys.F);
            mFindPathToNodeButton.Text = "Find Path To Node";
            mFindPathToNodeButton.SetOverlayTextures(findPathTexture, null);
            mFindPathToNodeButton.Push += FindPathToNodeButtonPress;
            
            mMoveButton.AddToRadioGroup(mFindPathToNodeButton);


        }