mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-23 21:39:48 +00:00
24 lines
362 B
C++
24 lines
362 B
C++
#pragma once
|
|
|
|
#ifndef BACKGRND_H
|
|
#define BACKGRND_H
|
|
|
|
#include "ob.h"
|
|
#include "export.h"
|
|
|
|
EXPORT void Backgrnd_On(unsigned __int16);
|
|
EXPORT void Backgrnd_Off(unsigned __int16);
|
|
|
|
class CBackground : public CBody
|
|
{
|
|
public:
|
|
EXPORT CBackground(u32, CSVector*);
|
|
EXPORT virtual ~CBackground(void);
|
|
|
|
u8 padBottom[8];
|
|
|
|
};
|
|
|
|
void validate_CBackground(void);
|
|
#endif
|