Ryan Scott / menuSystemMbedBroken

Dependencies:   ANSITermMenuSystem

Fork of menuSystemMbed by Ryan Scott

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers XYPoint.h Source File

XYPoint.h

00001 //
00002 //  XYPoint.h
00003 //  menuSystem
00004 //
00005 //  Created by BradDSmith on 2013-02-26.
00006 //  Copyright (c) 2013 BradDSmith. All rights reserved.
00007 //
00008 
00009 #ifndef __menuSystem__XYPoint__
00010 #define __menuSystem__XYPoint__
00011 
00012 
00013 class XYPoint {
00014 public:
00015     int X;
00016     int Y;
00017 
00018 public:
00019     XYPoint( int x, int y);
00020     XYPoint();
00021 
00022 };
00023 
00024 #endif /* defined(__menuSystem__XYPoint__) */