menu system menus complete

Fork of menuSystemMbed by Brad Smith

XYPoint.cpp

Committer:
Rybowonder
Date:
2013-03-08
Revision:
3:bdf42b6c15f4
Parent:
0:a5ece7312edc

File content as of revision 3:bdf42b6c15f4:

//
//  XYPoint.cpp
//  menuSystem
//
//  Created by BradDSmith on 2013-02-26.
//  Copyright (c) 2013 BradDSmith. All rights reserved.
//

#include "XYPoint.h"

XYPoint::XYPoint()
{
    X = 0;
    Y = 0;
}

XYPoint::XYPoint( int x, int y)
{
    X = x;
    Y = y;
    
}