mirror of
https://github.com/recp/cglm.git
synced 2026-02-17 03:39:05 +00:00
21 lines
338 B
C
21 lines
338 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 "structs/vec4.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* cglm_structs_h */
|