Files
j3ml/include/J3ML/LinearAlgebra/Vector2i.hpp
josh 70aa74719a
Some checks failed
Run tests / Explore-Gitea-Actions (push) Failing after 2m32s
Build Docs With Doxygen / Explore-Gitea-Actions (push) Successful in 37s
Minor fixes related to test migration
2024-06-26 11:44:04 -04:00

11 lines
121 B
C++

#pragma once
namespace J3ML::LinearAlgebra
{
class Vector2i
{
public:
int x;
int y;
};
}