diff options
Diffstat (limited to 'CST116F2021-Proj3/Header.h')
| -rw-r--r-- | CST116F2021-Proj3/Header.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/CST116F2021-Proj3/Header.h b/CST116F2021-Proj3/Header.h new file mode 100644 index 0000000..8584f4e --- /dev/null +++ b/CST116F2021-Proj3/Header.h @@ -0,0 +1,9 @@ +#pragma once +#include <iostream> +#include <iomanip> + +using namespace std; + +//function prototypes +void getNewMatrices(float Matrix1[3][3], float Matrix2[3][3]); +void addMatrices(float Matrix1[3][3], float Matrix2[3][3]);
\ No newline at end of file |