mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-20 18:52:28 +00:00
Remove some dead code.
This commit is contained in:
parent
b01986c3c5
commit
5fbe50a5e2
2 changed files with 0 additions and 10 deletions
|
@ -96,7 +96,6 @@ extern int num_entities;
|
|||
|
||||
const char *ValueForKey (entity_t *ent, const char *key);
|
||||
void SetKeyValue (entity_t *ent, const char *key, const char *value);
|
||||
float FloatForKey (entity_t *ent, const char *key);
|
||||
entity_t *FindEntityWithKeyPair(const char *key, const char *value);
|
||||
void GetVectorForKey (entity_t *ent, const char *key, vec3_t vec);
|
||||
|
||||
|
|
|
@ -367,15 +367,6 @@ SetKeyValue (entity_t *ent, const char *key, const char *value)
|
|||
ep->value = strdup (value);
|
||||
}
|
||||
|
||||
float
|
||||
FloatForKey (entity_t *ent, const char *key)
|
||||
{
|
||||
const char*k;
|
||||
|
||||
k = ValueForKey (ent, key);
|
||||
return atof (k);
|
||||
}
|
||||
|
||||
entity_t *
|
||||
FindEntityWithKeyPair (const char *key, const char *value)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue