mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +00:00
34 lines
599 B
C++
34 lines
599 B
C++
#pragma once
|
|
|
|
#ifndef HOSTAGE_H
|
|
#define HOSTAGE_H
|
|
|
|
#include "export.h"
|
|
#include "baddy.h"
|
|
#include "mem.h"
|
|
|
|
|
|
class CHostage : public CBaddy {
|
|
|
|
public:
|
|
EXPORT CHostage(i32*, i32);
|
|
EXPORT void GetUp(void);
|
|
EXPORT void DisappearBitch(void);
|
|
EXPORT void WaitForPlayer(void);
|
|
EXPORT void CheckIfFreed(void);
|
|
EXPORT void HostageXAPlay(i32, i32, i32);
|
|
EXPORT void BegMotherfucker(void);
|
|
EXPORT void TellSomebodyToShootMe(void);
|
|
|
|
|
|
i32 field_324;
|
|
i32 field_328;
|
|
SHandle field_32C;
|
|
};
|
|
|
|
|
|
void validate_CHostage(void);
|
|
EXPORT void Hostage_CreateHostage(const unsigned int *, unsigned int *);
|
|
|
|
#endif
|