fallout2-ce/src/graph_lib.h

12 lines
244 B
C
Raw Normal View History

2022-05-19 01:51:26 -07:00
#ifndef GRAPH_LIB_H
#define GRAPH_LIB_H
2022-09-23 05:43:44 -07:00
namespace fallout {
2022-05-19 01:51:26 -07:00
int graphCompress(unsigned char* a1, unsigned char* a2, int a3);
int graphDecompress(unsigned char* a1, unsigned char* a2, int a3);
2022-09-23 05:43:44 -07:00
} // namespace fallout
2022-05-19 01:51:26 -07:00
#endif /* GRAPH_LIB_H */