mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2025-02-24 04:31:11 +03:00
Fix GetPropVector return type
This commit is contained in:
parent
c86bf826e0
commit
ead5668dc8
@ -1615,7 +1615,7 @@ public:
|
||||
#define SetProp( type, name )\
|
||||
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 );
|
||||
@ -1624,8 +1624,8 @@ public:
|
||||
SetProp( float, Float );
|
||||
GetProp( HSCRIPT, Entity );
|
||||
SetProp( HSCRIPT, Entity );
|
||||
GetProp( Vector, Vector );
|
||||
SetProp( Vector, Vector );
|
||||
GetProp( const Vector&, Vector );
|
||||
SetProp( const Vector&, Vector );
|
||||
GetProp( const char*, String );
|
||||
SetProp( const char*, String );
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user