mirror of
https://github.com/krystalgamer/spidey-decomp.git
synced 2024-11-26 23:00:30 +00:00
18 lines
226 B
C++
18 lines
226 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);
|
|
};
|
|
|
|
void validate_CGouradRibbon(void);
|
|
|
|
#endif
|