mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
22 lines
510 B
C++
22 lines
510 B
C++
#ifndef EGG_GFX_DRAW_PATH_SHADOW_VOLUME_H
|
|
#define EGG_GFX_DRAW_PATH_SHADOW_VOLUME_H
|
|
#include "types_egg.h"
|
|
#include "eggDrawPathBase.h"
|
|
|
|
namespace EGG
|
|
{
|
|
class DrawPathShadowVolume : public DrawPathBase
|
|
{
|
|
public:
|
|
DrawPathShadowVolume();
|
|
virtual int getNumScnProc() const; // at 0x1C
|
|
virtual void calc(); // at 0x24
|
|
virtual void draw(u16); // at 0x28
|
|
virtual ~DrawPathShadowVolume(); // at 0x8
|
|
|
|
private:
|
|
char UNK_0x7C[0x98 - 0x7C];
|
|
};
|
|
}
|
|
|
|
#endif |