Merge remote-tracking branch 'origin/main'
Some checks failed
Run tests / Explore-Gitea-Actions (push) Failing after 53s
Build Docs With Doxygen / Explore-Gitea-Actions (push) Successful in 52s

This commit is contained in:
2024-05-24 14:36:30 -04:00
2 changed files with 4 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
/cmake-build-debug
/.idea

View File

@@ -13,6 +13,7 @@ namespace J3ML::Geometry
class Shape
{
public:
virtual ~Shape() = default; //Polymorphic for dynamic_cast.
protected:
private:
};
@@ -20,6 +21,7 @@ namespace J3ML::Geometry
class Shape2D
{
public:
virtual ~Shape2D() = default;
protected:
private:
};