-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblackcat.h
41 lines (31 loc) · 916 Bytes
/
blackcat.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once
#include "export.h"
#include "baddy.h"
class CBlackCat : public CBaddy {
public:
EXPORT CBlackCat(int*, int);
EXPORT virtual ~CBlackCat(void);
EXPORT void Shouldnt_DoPhysics_Be_Virtual(void);
EXPORT void DoPhysics(void);
EXPORT void KillAllCommandBlocks(void);
EXPORT int* KillCommandBlock(int*);
EXPORT void AI(void) OVERRIDE;
EXPORT void DoMGSShadow(void);
EXPORT i32* GetNewCommandBlock(u32);
EXPORT void KillCommandBlockByID(i32);
EXPORT void SynthesizeAnalogueInput(void);
i32 field_324;
i32 field_328;
i32 field_32C;
unsigned char padAfter32C[0x33C-0x32C-4];
// @FIXME guess type
void *field_33C;
unsigned char field_340;
int field_344;
unsigned char field_348;
int field_34C;
i32* field_350;
};
void validate_CBlackCat(void);
EXPORT void BlackCat_CreateBlackCat(const unsigned int *stack, unsigned int *result);
EXPORT void BlackCat_RelocatableModuleClear(void);