Create SAFTStructs.h

This commit is contained in:
kradchen
2023-06-09 11:33:33 +08:00
parent ee94763b28
commit 06d293fc58
6 changed files with 49 additions and 46 deletions

11
SAFT/SAFTStructs.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef __SAFTSTRUCTS_H__
#define __SAFTSTRUCTS_H__
#include <cstddef>
struct Matrix_t{
void* Data;
size_t NumberOfDims;
size_t Dims[3];
size_t DataSize;
};
#endif // __SAFTSTRUCTS_H__