A5/ScaleneTriangle.h

10 lines
188 B
C
Raw Permalink Normal View History

2024-11-06 17:02:59 -07:00
#ifndef SCALENE_TRIANGLE_H
#define SCALENE_TRIANGLE_H
#include "Triangle.h"
class ScaleneTriangle : public ATriangle {
public:
bool validate() override;
2024-11-06 17:02:59 -07:00
};
#endif // SCALENE_TRIANGLE_H