mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2025-02-24 12:41:09 +03:00
Fix GetPropVector return type
This commit is contained in:
parent
c86bf826e0
commit
ead5668dc8
@ -1615,7 +1615,7 @@ public:
|
|||||||
#define SetProp( type, name )\
|
#define SetProp( type, name )\
|
||||||
void SetProp##name( HSCRIPT hEnt, const char* szProp, type value )\
|
void SetProp##name( HSCRIPT hEnt, const char* szProp, type value )\
|
||||||
{\
|
{\
|
||||||
return SetProp##name##Array( hEnt, szProp, value, 0 );\
|
SetProp##name##Array( hEnt, szProp, value, 0 );\
|
||||||
}
|
}
|
||||||
|
|
||||||
GetProp( int, Int );
|
GetProp( int, Int );
|
||||||
@ -1624,8 +1624,8 @@ public:
|
|||||||
SetProp( float, Float );
|
SetProp( float, Float );
|
||||||
GetProp( HSCRIPT, Entity );
|
GetProp( HSCRIPT, Entity );
|
||||||
SetProp( HSCRIPT, Entity );
|
SetProp( HSCRIPT, Entity );
|
||||||
GetProp( Vector, Vector );
|
GetProp( const Vector&, Vector );
|
||||||
SetProp( Vector, Vector );
|
SetProp( const Vector&, Vector );
|
||||||
GetProp( const char*, String );
|
GetProp( const char*, String );
|
||||||
SetProp( const char*, String );
|
SetProp( const char*, String );
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user