Supprimer 'SH3D/object/coordtable/coord.h'

This commit is contained in:
Milan Garnier 2019-07-18 14:41:50 +02:00
parent 078f1c4805
commit eb973e4982
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
#ifndef COORD_H
#define COORD_H
// (int)1 = 1cm
class Coord
{
public:
Coord();
Coord(const Coord& coord);
Coord& operator=(const Coord& a);
Coord& operator+=(const Coord& a);
int x,y,z;
};
bool operator==(Coord const& a, Coord const& b);
Coord operator+(Coord const& a, Coord const& b);
#endif