mbed menu system

XYPoint.h

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

File content as of revision 2:5c4911aba273:

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

#ifndef __menuSystem__XYPoint__
#define __menuSystem__XYPoint__


class XYPoint {
public:
    int X;
    int Y;

public:
    XYPoint( int x, int y);
    XYPoint();

};

#endif /* defined(__menuSystem__XYPoint__) */