Пример #1
0
        public static void DrawLayer1TestMap(SpriteBatch spriteBatch)
        {
            spriteBatch.Draw
            (
                texture: baseTexture,
                position: Vector2.Zero,
                color: Color.White
            );

            spriteBatch.Draw
            (
                texture: prop1,
                position: prop1Position,
                color: Color.White
            );

            npc.Draw(spriteBatch);
        }