Minor fixes related to test migration
Some checks failed
Run tests / Explore-Gitea-Actions (push) Failing after 2m32s
Build Docs With Doxygen / Explore-Gitea-Actions (push) Successful in 37s

This commit is contained in:
2024-06-26 11:44:04 -04:00
parent 4d9a9d3a95
commit 70aa74719a
13 changed files with 207 additions and 241 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
namespace J3ML::LinearAlgebra
{
class Vector2i
{
public:
int x;
int y;
};
}