Subversion Repositories AndroidProjects

Rev

Rev 1402 | Rev 1419 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ShapeEditor.interaction
{
    public class PolygonMode : InteractionMode
    {

        public PolygonMode(MainForm parent)
            : base(parent, InteractionMode.POLYGON)
        {
        }

        public override void MouseMove(MouseEventArgs e)
        {
        }

        public override void MouseUp(MouseEventArgs e)
        {
        }

        public override void Render()
        {
        }
    }
}