mirror of
https://github.com/encounter/Petari.git
synced 2026-03-30 11:34:15 -07:00
10 lines
156 B
C++
10 lines
156 B
C++
#pragma once
|
|
|
|
#include "Game/MapObj/ChipBase.hpp"
|
|
|
|
class YellowChip : public ChipBase {
|
|
public:
|
|
YellowChip(const char *);
|
|
|
|
virtual ~YellowChip();
|
|
}; |