mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
17 lines
195 B
C
17 lines
195 B
C
|
#ifndef PIZZA_H
|
||
|
#define PIZZA_H
|
||
|
|
||
|
#include "isleactor.h"
|
||
|
|
||
|
// VTABLE 0x100d7380
|
||
|
// SIZE 0x9c
|
||
|
class Pizza : public IsleActor
|
||
|
{
|
||
|
public:
|
||
|
Pizza();
|
||
|
virtual ~Pizza() override;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // PIZZA_H
|