Inheritance: SFML.Graphics.Sprite
Example #1
0
        public void Draw(BatchedSprite sprite, int depth = 0)
        {
            if (!drawing)
            {
                throw new Exception("Begin() must be called first");
            }

            sprites.Add(Tuple.Create(depth, sprite));
        }
Example #2
0
        public void Draw(BatchedSprite sprite, int depth = 0)
        {
            if (!drawing) throw new Exception("Begin() must be called first");

            sprites.Add(Tuple.Create(depth, sprite));
        }