mirror of
https://github.com/Relintai/pmlpp.git
synced 2024-11-13 13:57:19 +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
|