added keys to game config files

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40554
This commit is contained in:
David Anderson
2007-03-01 03:58:18 +00:00
parent 8d29b2c02e
commit d893af2ea4
3 changed files with 35 additions and 4 deletions
+9 -1
View File
@@ -68,13 +68,21 @@ namespace SourceMod
virtual bool GetOffset(const char *key, int *value) =0;
/**
* @brief Returns information about a property.
* @brief Returns information about a dynamic offset.
*
* @param key Key to retrieve from the property section.
* @param value Pointer to store the offset value. Will be -1 on failure.
* @return A PropError error code.
*/
virtual SendProp *GetSendProp(const char *key) =0;
/**
* @brief Returns the value of a key from the "Keys" section.
*
* @param key Key to retrieve from the Keys section.
* @return String containing the value, or NULL if not found.
*/
virtual const char *GetKeyValue(const char *key) =0;
};
/**