Changeset 6 for trunk/src/game/Player.h

Show
Ignore:
Timestamp:
11/19/08 13:22:12 (17 years ago)
Author:
yumileroy
Message:

[svn] * Added ACE for Linux and Windows (Thanks Derex for Linux part and partial Windows part)
* Updated to 6721 and 676
* Fixed TrinityScript? logo
* Version updated to 0.2.6721.676

Original author: Neo2003
Date: 2008-10-04 06:17:19-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/Player.h

    r2 r6  
    671671{ 
    672672    ItemPosCount(uint16 _pos, uint8 _count) : pos(_pos), count(_count) {} 
    673     bool isContainedIn(std::vector<ItemPosCount>&); 
     673    bool isContainedIn(std::vector<ItemPosCount> const& vec) const; 
    674674    uint16 pos; 
    675675    uint8 count; 
     
    17421742        uint32 GetShieldBlockValue() const;                 // overwrite Unit version (virtual) 
    17431743        bool CanParry() const { return m_canParry; } 
    1744         void SetCanParry(bool value) { m_canParry = value; } 
     1744        void SetCanParry(bool value); 
     1745        bool CanBlock() const { return m_canBlock; } 
     1746        void SetCanBlock(bool value); 
    17451747        bool CanDualWield() const { return m_canDualWield; } 
    17461748        void SetCanDualWield(bool value) { m_canDualWield = value; } 
     
    22022204        uint32 m_ArmorProficiency; 
    22032205        bool m_canParry; 
     2206        bool m_canBlock; 
    22042207        bool m_canDualWield; 
    22052208        uint8 m_swingErrorMsg;