spidey-decomp/weapons.h
2024-07-29 19:05:28 +02:00

22 lines
284 B
C++

#pragma once
#ifndef WEAPONS_H
#define WEAPONS_H
#include "bit.h"
#include "export.h"
class CGouradRibbon : public CSpecialDisplay
{
public:
EXPORT CGouradRibbon(i32, i32);
i32 mTrail;
i32 NumPoints;
SRibbonPoint* mpPoints;
};
void validate_CGouradRibbon(void);
#endif