93 {
94 HescoBox hesco;
95
96 if ( Class.CastTo(hesco,action_data.m_Target.GetObject()) )
97 {
98 if ( hesco.GetState() == HescoBox.UNFOLDED )
99 {
100 hesco.Fill();
101 }
102 else if ( hesco.GetState() == HescoBox.FILLED )
103 {
104 hesco.Unfold();
105 }
106 }
107 }