mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +00:00
16 lines
307 B
C
16 lines
307 B
C
#pragma once
|
|
|
|
#ifndef SPOOL_H
|
|
#define SPOOL_H
|
|
|
|
|
|
#include "export.h"
|
|
#include "texture.h"
|
|
|
|
EXPORT int Spool_FindRegion(const char *);
|
|
EXPORT unsigned int Spool_GetModel(unsigned int, int);
|
|
EXPORT unsigned int *Spool_SkipPackets(unsigned int *);
|
|
EXPORT Texture* Spool_FindTextureEntry(unsigned int);
|
|
|
|
#endif
|