diff options
author | Samuel Barney <samjbarney@gmail.com> | 2014-08-21 02:56:31 +0200 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2014-08-21 02:56:31 +0200 |
commit | 34e0bc759326803ead6e752533b402ff32db9dd2 (patch) | |
tree | f535df9df31aaac33f5f8461733503a842adea66 /src/Mobs/NewHorse.h | |
parent | Temporarily instantiating components here. (diff) | |
download | cuberite-34e0bc759326803ead6e752533b402ff32db9dd2.tar cuberite-34e0bc759326803ead6e752533b402ff32db9dd2.tar.gz cuberite-34e0bc759326803ead6e752533b402ff32db9dd2.tar.bz2 cuberite-34e0bc759326803ead6e752533b402ff32db9dd2.tar.lz cuberite-34e0bc759326803ead6e752533b402ff32db9dd2.tar.xz cuberite-34e0bc759326803ead6e752533b402ff32db9dd2.tar.zst cuberite-34e0bc759326803ead6e752533b402ff32db9dd2.zip |
Diffstat (limited to 'src/Mobs/NewHorse.h')
-rw-r--r-- | src/Mobs/NewHorse.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/Mobs/NewHorse.h b/src/Mobs/NewHorse.h new file mode 100644 index 000000000..8eadf01d4 --- /dev/null +++ b/src/Mobs/NewHorse.h @@ -0,0 +1,43 @@ + +#pragma once + +#include "NewMonster.h" + + + + + +class cNewHorse : + public cNewMonster +{ + typedef cNewMonster super; + +public: + cNewHorse(int Type, int Color, int Style, int TameTimes); + + CLASS_PROTODEF(cNewHorse) + + virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override; + virtual void Tick(float a_Dt, cChunk & a_Chunk) override; + + bool IsSaddled (void) const {return m_bIsSaddled; } + bool IsChested (void) const {return m_bHasChest; } + bool IsEating (void) const {return m_bIsEating; } + bool IsRearing (void) const {return m_bIsRearing; } + bool IsMthOpen (void) const {return m_bIsMouthOpen; } + bool IsTame (void) const {return m_bIsTame; } + int GetHorseType (void) const {return m_Type; } + int GetHorseColor (void) const {return m_Color; } + int GetHorseStyle (void) const {return m_Style; } + int GetHorseArmour (void) const {return m_Armour;} + +private: + + bool m_bHasChest, m_bIsEating, m_bIsRearing, m_bIsMouthOpen, m_bIsTame, m_bIsSaddled; + int m_Type, m_Color, m_Style, m_Armour, m_TimesToTame, m_TameAttemptTimes, m_RearTickCount; + +} ; + + + + |