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