コード例 #1
0
ファイル: UIItem.cs プロジェクト: tipfom/quasi_
        public UIItem(Layer owner, UILayout layout, int depth, bool multiclick = false)
        {
            Layer = owner;

            this.multiClick = multiclick;
            this._Depth     = depth;
            this.Layout     = layout;
            UIRenderer.Add(owner, this);

            Layout.Init(this);
        }