mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-12 22:47:22 +00:00
14 lines
192 B
C++
14 lines
192 B
C++
#ifndef TIER_H // ensuring that this object is only initialized once
|
|
#include "tier.cpp"
|
|
#endif
|
|
|
|
class hund : public tier
|
|
{
|
|
public:
|
|
hund();
|
|
};
|
|
|
|
hund::hund() : tier()
|
|
{
|
|
Laut = "wuff";
|
|
} |