This commit is contained in:
xdoxx123 2026-03-15 13:46:45 +01:00
parent 667f9df42c
commit b4dbe2b0ee

View file

@ -1,13 +1,12 @@
#pragma once #pragma once
#include "Cow.h" #include "Cow.h"
#include "Entity.h"
class MushroomCow : public Cow class MushroomCow : public Cow
{ {
public: public:
eINSTANCEOF GetType() { return eTYPE_MUSHROOMCOW; } eINSTANCEOF GetType() { return eTYPE_MUSHROOMCOW; }
static Entity *create(Level *level) { return new LightningBolt(level); } static Entity *create(Level *level) { return new MushroomCow(level); }
public: public:
MushroomCow(Level *level); MushroomCow(Level *level);