Menu system broken

Dependencies:   ANSITermMenuSystem

Fork of menuSystemMbed by Ryan Scott

XYPoint.cpp

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

File content as of revision 8:6ddb8c26387a:

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