mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
13 lines
329 B
C++
13 lines
329 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef RGBDS_LINK_OBJECT_HPP
|
|
#define RGBDS_LINK_OBJECT_HPP
|
|
|
|
// Read an object (.o) file, and add its info to the data structures.
|
|
void obj_ReadFile(char const *fileName, unsigned int fileID);
|
|
|
|
// Sets up object file reading
|
|
void obj_Setup(unsigned int nbFiles);
|
|
|
|
#endif // RGBDS_LINK_OBJECT_HPP
|