Menu system broken
Dependencies: ANSITermMenuSystem
Fork of menuSystemMbed by
Diff: XYPoint.h
- Revision:
- 0:a5ece7312edc
diff -r 000000000000 -r a5ece7312edc XYPoint.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/XYPoint.h Thu Feb 28 00:38:31 2013 +0000 @@ -0,0 +1,24 @@ +// +// 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__) */