A5/Rhombus.h

10 lines
164 B
C
Raw Normal View History

2024-11-06 17:02:59 -07:00
#ifndef RHOMBUS_H
#define RHOMBUS_H
#include "Quadrilateral.h"
class Rhombus : public AQuadrilateral {
2024-11-18 00:16:40 -07:00
public:
bool validate() override;
2024-11-06 17:02:59 -07:00
};
#endif // RHOMBUS_H