mirror of
https://github.com/isledecomp/isle.git
synced 2026-02-02 05:01:17 +00:00
11 lines
127 B
C++
11 lines
127 B
C++
#ifndef GASSTATION_H
|
|
#define GASSTATION_H
|
|
|
|
class GasStation
|
|
{
|
|
public:
|
|
const char* GetClassName();
|
|
};
|
|
|
|
#endif // GASSTATION_H
|