mirror of
https://github.com/recp/cglm.git
synced 2025-12-24 20:34:58 +00:00
26 lines
470 B
C
26 lines
470 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_structs_h
|
|
#define cglm_structs_h
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "cglm.h"
|
|
#include "types-struct.h"
|
|
#include "structs/vec3.h"
|
|
#include "structs/vec4.h"
|
|
#include "structs/mat3.h"
|
|
#include "structs/mat4.h"
|
|
#include "structs/sphere.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* cglm_structs_h */
|