mirror of
https://github.com/recp/cglm.git
synced 2025-10-04 01:00:46 +00:00
28 lines
533 B
C
28 lines
533 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_call_h
|
|
#define cglm_call_h
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "cglm.h"
|
|
#include "call/cglmc-vec.h"
|
|
#include "call/cglmc-mat.h"
|
|
#include "call/cglmc-mat3.h"
|
|
#include "call/cglmc-affine.h"
|
|
#include "call/cglmc-cam.h"
|
|
#include "call/cglmc-quat.h"
|
|
#include "call/cglmc-euler.h"
|
|
#include "call/cglmc-io.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* cglm_call_h */
|