scummvm/engines/dm/objectman.h

18 lines
378 B
C
Raw Normal View History

2016-06-19 00:34:15 +02:00
#include "dm.h"
2016-06-19 00:48:28 +02:00
#include "champion.h"
2016-06-19 00:34:15 +02:00
namespace DM {
class ObjectMan {
DMEngine *_vm;
public:
2016-06-22 07:47:41 +02:00
explicit ObjectMan(DMEngine *vm);
2016-06-19 00:48:28 +02:00
IconIndice getObjectType(Thing thing); // @ F0032_OBJECT_GetType
2016-06-19 15:23:37 +02:00
IconIndice getIconIndex(Thing thing); // @ F0033_OBJECT_GetIconIndex
void extractIconFromBitmap(uint16 iconIndex, byte *srcBitmap); // F0036_OBJECT_ExtractIconFromBitmap
2016-06-19 00:34:15 +02:00
};
}