File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed
Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -56,4 +56,25 @@ CTakeDamageInfo::CTakeDamageInfo()
5656 m_iAmmoType = -1 ;
5757}
5858
59+
60+ //-----------------------------------------------------------------------------
61+ // CSendProxyRecipients function definitions.
62+ //-----------------------------------------------------------------------------
63+ void CSendProxyRecipients ::SetRecipient ( int iClient )
64+ {
65+ m_Bits .Set ( iClient );
66+ }
67+
68+ void CSendProxyRecipients ::ClearRecipient ( int iClient )
69+ {
70+ m_Bits .Clear ( iClient );
71+ }
72+
73+ void CSendProxyRecipients ::SetOnly ( int iClient )
74+ {
75+ m_Bits .ClearAll ();
76+ m_Bits .Set ( iClient );
77+ }
78+
79+
5980#endif // _UNDEFINED_SYMBOLS_BLADE_H
Original file line number Diff line number Diff line change @@ -63,4 +63,24 @@ CTakeDamageInfo::CTakeDamageInfo()
6363}
6464
6565
66+ //-----------------------------------------------------------------------------
67+ // CSendProxyRecipients function definitions.
68+ //-----------------------------------------------------------------------------
69+ void CSendProxyRecipients ::SetRecipient ( int iClient )
70+ {
71+ m_Bits .Set ( iClient );
72+ }
73+
74+ void CSendProxyRecipients ::ClearRecipient ( int iClient )
75+ {
76+ m_Bits .Clear ( iClient );
77+ }
78+
79+ void CSendProxyRecipients ::SetOnly ( int iClient )
80+ {
81+ m_Bits .ClearAll ();
82+ m_Bits .Set ( iClient );
83+ }
84+
85+
6686#endif // UNDEFINED_SYMBOLS_CSGO_H
You can’t perform that action at this time.
0 commit comments