mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +00:00
22 lines
343 B
C++
22 lines
343 B
C++
#ifndef MJ_H
|
|
#define MJ_H
|
|
#pragma once
|
|
|
|
#include "export.h"
|
|
#include "baddy.h"
|
|
|
|
|
|
class CMJ : public CBaddy {
|
|
|
|
public:
|
|
EXPORT void AI(void);
|
|
EXPORT CMJ(int*, __int16);
|
|
EXPORT ~CMJ(void) OVERRIDE;
|
|
};
|
|
|
|
|
|
void validate_CMJ(void);
|
|
EXPORT void MJ_CreateMJ(const unsigned int *, unsigned int *);
|
|
EXPORT void MJ_RelocatableModuleClear(void);
|
|
#endif
|