mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-27 07:10:24 +00:00
22 lines
284 B
C++
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
|