Menu system broken
Dependencies: ANSITermMenuSystem
Fork of menuSystemMbed by
Diff: XYPoint.cpp
- Revision:
- 0:a5ece7312edc
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/XYPoint.cpp Thu Feb 28 00:38:31 2013 +0000 @@ -0,0 +1,26 @@ +// +// 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; + +} + + + +