Files
Jérôme Delacotte 7b30d6e298 first commit
2025-03-06 11:15:32 +01:00

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