Files
minecraft-pe-0.6.1/src/world/entity/monster/Creeper.h
2026-03-02 22:04:18 +03:00

47 lines
924 B
C++
Executable File

#ifndef NET_MINECRAFT_WORLD_ENTITY_MONSTER__Creeper_H__
#define NET_MINECRAFT_WORLD_ENTITY_MONSTER__Creeper_H__
//package net.minecraft.world.entity.monster;
#include "Monster.h"
#include <string>
class Entity;
class Creeper: public Monster
{
typedef Monster super;
public:
Creeper(Level* level);
/*@Override*/
int getMaxHealth();
void tick();
float getSwelling(float a);
virtual int getEntityTypeId() const;
protected:
int getDeathLoot();
void checkCantSeeTarget(Entity* target, float d);
void checkHurtTarget(Entity* target, float d);
std::string getHurtSound();
std::string getDeathSound();
private:
int getSwellDir();
void setSwellDir(int dir);
int swell;
int oldSwell;
int swellDir;
static const int DATA_SWELL_DIR = 16;
static const int MAX_SWELL = 30;
};
#endif /*NET_MINECRAFT_WORLD_ENTITY_MONSTER__Creeper_H__*/