Formatted source files

This commit is contained in:
smallmodel 2023-10-01 22:47:25 +02:00
parent 3317345d92
commit 673a42242d
No known key found for this signature in database
GPG key ID: A96F163ED4891440
7 changed files with 226 additions and 263 deletions

View file

@ -22,8 +22,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
// scriptvariable.h: Dynamic variables for scripts.
#ifndef __SCRIPTVARIABLE_H__
#define __SCRIPTVARIABLE_H__
#pragma once
#include "../qcommon/listener.h"
#include "../qcommon/short3.h"
@ -304,7 +303,7 @@ public:
ScriptVariable *GetVariable(str name) const;
ScriptVariable *GetVariable(unsigned int name) const;
bool VariableExists(str name) const;
bool VariableExists(str name) const;
ScriptVariable *SetVariable(const char *name, int value);
ScriptVariable *SetVariable(const char *name, float value);
@ -318,5 +317,3 @@ public:
};
#endif
#endif /* __SCRIPTVARIABLE_H__ */