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