mirror of
https://github.com/Relintai/pmlpp.git
synced 2025-01-10 17:49:36 +01:00
18 lines
245 B
C++
18 lines
245 B
C++
#ifndef MLPP_MATRIX_H
|
|
#define MLPP_MATRIX_H
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
class MLPPMatrix : public Reference {
|
|
GDCLASS(MLPPMatrix, Reference);
|
|
|
|
public:
|
|
MLPPMatrix();
|
|
~MLPPMatrix();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|