AlpacaLibrary/Include/Core/Classes/Matrix.hpp

28 lines
594 B
C++
Raw Normal View History

2023-08-26 22:00:25 +00:00
#ifndef MATRIX_HPP_INCLUDED
#define MATRIX_HPP_INCLUDED
#include "../JavaClass/Class.hpp"
#include <vector>
namespace Internal
{
class Matrix : public Object
{
public:
Matrix(const void* Obj);
Matrix() = default;
Matrix(Matrix&& Obj) = default;
Matrix(const Matrix& Obj) = default;
Matrix& operator=(Matrix&& Obj) = default;
Matrix& operator=(const Matrix& Obj) = default;
static Class GetClass();
std::vector<float> GetValues() const;
};
}
#endif // MATRIX_HPP_INCLUDED