menu system menus complete

Fork of menuSystemMbed by Brad Smith

XYPoint.h

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

File content as of revision 3:bdf42b6c15f4:

//
//  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__) */