mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 13:29:48 +00:00
21 lines
365 B
C++
21 lines
365 B
C++
#ifndef LIZARD_H
|
|
#define LIZARD_H
|
|
|
|
#pragma once
|
|
|
|
#include "export.h"
|
|
#include "baddy.h"
|
|
|
|
class CLizard : public CBaddy {
|
|
public:
|
|
EXPORT CLizard(i32*, i16);
|
|
EXPORT ~CLizard(void);
|
|
EXPORT void AI(void);
|
|
};
|
|
|
|
|
|
void validate_CLizard(void);
|
|
EXPORT void Lizard_CreateLizard(const unsigned int *, unsigned int *);
|
|
EXPORT void Lizard_RelocatableModuleClear(void);
|
|
#endif
|