mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-24 05:49:48 +00:00
17 lines
179 B
C++
17 lines
179 B
C++
#ifndef EXP_H
|
|
#define EXP_H
|
|
|
|
#pragma once
|
|
|
|
#include "ob.h"
|
|
|
|
class CItemFrag : public CBit
|
|
{
|
|
public:
|
|
unsigned char itemFragPad[0x7C];
|
|
};
|
|
|
|
void validate_CItemFrag(void);
|
|
|
|
#endif
|