scummvm/gob/pack.h
Eugene Sandulenko 1758c5b211 Initial checking of Gob engine
svn-id: r17388
2005-04-05 15:07:40 +00:00

19 lines
317 B
C++

/*
** Gobliiins 1
** Original game by CoktelVision
**
** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
**
*/
#ifndef __UNPACKER_H
#define __UNPACKER_H
namespace Gob {
int32 asm_unpackData(char *source, char *dest, char *temp);
int32 unpackData(char *source, char *dest);
} // End of namespace Gob
#endif