mbed menu system

XYPoint.cpp

Committer:
mbedDevLondon
Date:
2013-02-28
Revision:
2:5c4911aba273
Parent:
0:a5ece7312edc

File content as of revision 2:5c4911aba273:

//
//  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;
    
}