ObjectLoader/src/utilities.h

19 lines
285 B
C++

/**
utilities - extra functions that didn't really belong
inside of a class or the main file.
*/
#ifndef UTILITIES_H
#define UTILITIES_H
#include <iostream>
#include <glm/glm.hpp>
using namespace std;
void printGlmMat4(glm::mat4 m);
void printGlmVec3(glm::vec3 v);
#endif