mirror of
https://github.com/recp/cglm.git
synced 2025-10-03 16:51:35 +00:00
23 lines
433 B
C
23 lines
433 B
C
/*
|
|
* Copyright (c), Recep Aslantas.
|
|
*
|
|
* MIT License (MIT), http://opensource.org/licenses/MIT
|
|
* Full license can be found in the LICENSE file
|
|
*/
|
|
|
|
#ifndef cglm_h
|
|
#define cglm_h
|
|
|
|
#include "cglm-common.h"
|
|
#include "cglm-vec.h"
|
|
#include "cglm-mat.h"
|
|
#include "cglm-mat3.h"
|
|
#include "cglm-affine.h"
|
|
#include "cglm-cam.h"
|
|
#include "cglm-quat.h"
|
|
#include "cglm-euler.h"
|
|
#include "cglm-util.h"
|
|
#include "cglm-io.h"
|
|
|
|
#endif /* cglm_h */
|