17 lines
166 B
C++
17 lines
166 B
C++
#ifndef Point_h
|
|
#define Point_h
|
|
#include <Arduino.h>
|
|
|
|
class Point {
|
|
public :
|
|
Point();
|
|
Point(int _x, int _y);
|
|
public :
|
|
float x, y;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|