Skip to content

Commit

Permalink
Remove unnamed struct
Browse files Browse the repository at this point in the history
  • Loading branch information
Zegeri committed Sep 16, 2018
1 parent f1852c8 commit 4b4e63b
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions src/xrGame/HudItem.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,15 @@ class CHudItem : public CHUDState
fl_inertion_allow = (1 << 3),
};

struct
{
const CMotionDef* m_current_motion_def;
shared_str m_current_motion;
u32 m_dwMotionCurrTm;
u32 m_dwMotionStartTm;
u32 m_dwMotionEndTm;
u32 m_startedMotionState;
u8 m_started_rnd_anim_idx;
bool m_bStopAtEndAnimIsRunning;
};
// Motion data
const CMotionDef* m_current_motion_def;
shared_str m_current_motion;
u32 m_dwMotionCurrTm;
u32 m_dwMotionStartTm;
u32 m_dwMotionEndTm;
u32 m_startedMotionState;
u8 m_started_rnd_anim_idx;
bool m_bStopAtEndAnimIsRunning;

public:
virtual void Load(LPCSTR section);
Expand Down

0 comments on commit 4b4e63b

Please sign in to comment.