Mono_Server.MonoServer.DrawPoint C# (CSharp) 메소드

DrawPoint() 개인적인 메소드

private DrawPoint ( SpriteBatch sb, Vector2 point ) : void
sb Microsoft.Xna.Framework.Graphics.SpriteBatch
point Vector2
리턴 void
        void DrawPoint(SpriteBatch sb, Vector2 point)
        {
            DrawLine(sb, point, point + new Vector2(1f,1f));
        }