Files

10 lines
156 B
C++

#pragma once
#include "Game/MapObj/ChipBase.hpp"
class YellowChip : public ChipBase {
public:
YellowChip(const char *);
virtual ~YellowChip();
};