コード例 #1
0
ファイル: GumpPlus.cs プロジェクト: Orion321/unknown-shard
        public void AddBackground(int x, int y, int width, int height, int back, bool over)
        {
            BackgroundPlus plus = new BackgroundPlus(x, y, width, height, back, over);

            Add(plus);
        }
コード例 #2
0
ファイル: GumpPlus.cs プロジェクト: ITLongwell/aedilis2server
        public void AddBackground(int x, int y, int width, int height, int back, bool over)
        {
            BackgroundPlus plus = new BackgroundPlus(x, y, width, height, back, over);

            Add(plus);
        }
コード例 #3
0
ファイル: GumpPlus.cs プロジェクト: Orion321/unknown-shard
        public void AddBackgroundZero(int x, int y, int width, int height, int back, bool over)
        {
            BackgroundPlus plus = new BackgroundPlus(x, y, width, height, back, over);

            Entries.Insert(0, plus);
        }
コード例 #4
0
ファイル: GumpPlus.cs プロジェクト: ITLongwell/aedilis2server
        public void AddBackgroundZero(int x, int y, int width, int height, int back, bool over)
        {
            BackgroundPlus plus = new BackgroundPlus(x, y, width, height, back, over);

            Entries.Insert(0, plus);
        }