Menu system broken

Dependencies:   ANSITermMenuSystem

Fork of menuSystemMbed by Ryan Scott

XYPoint.h

Committer:
Rybowonder
Date:
2013-05-04
Revision:
8:6ddb8c26387a
Parent:
0:a5ece7312edc

File content as of revision 8:6ddb8c26387a:

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