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
#include "Cow.h"
#include "Entity.h"
class MushroomCow : public Cow
{
public:
eINSTANCEOF GetType() { return eTYPE_MUSHROOMCOW; }
static Entity *create(Level *level) { return new LightningBolt(level); }
static Entity *create(Level *level) { return new MushroomCow(level); }
public:
MushroomCow(Level *level);