-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrlobj.h
More file actions
27 lines (20 loc) · 686 Bytes
/
rlobj.h
File metadata and controls
27 lines (20 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// rlobj (c) Nikolas Wipper 2021
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0, with exemptions for Ramon Santamaria and the
* raylib contributors who may, at their discretion, instead license
* any of the Covered Software under the zlib license. If a copy of
* the MPL was not distributed with this file, You can obtain one
* at https://mozilla.org/MPL/2.0/. */
#ifndef RLOBJ_LIBRARY_H
#define RLOBJ_LIBRARY_H
#include <raylib.h>
#ifdef __cplusplus
extern "C" {
#endif
// Naming is important to avoid linker errors
// raylib has a LoadOBJ
Model LoadObj(const char *filename);
#ifdef __cplusplus
};
#endif
#endif //RLOBJ_LIBRARY_H