mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-08 17:59:37 +00:00
22 lines
633 B
C++
22 lines
633 B
C++
/*
|
|
_____ __ ___ __ ____ _ __
|
|
/ ___/__ ___ _ ___ / |/ /__ ___ / /_____ __ __/ __/_______(_)__ / /_
|
|
/ (_ / _ `/ ' \/ -_) /|_/ / _ \/ _ \/ '_/ -_) // /\ \/ __/ __/ / _ \/ __/
|
|
\___/\_,_/_/_/_/\__/_/ /_/\___/_//_/_/\_\\__/\_, /___/\__/_/ /_/ .__/\__/
|
|
/___/ /_/
|
|
|
|
See Copyright Notice in gmMachine.h
|
|
|
|
*/
|
|
|
|
#ifndef _GMSTRINGLIB_H_
|
|
#define _GMSTRINGLIB_H_
|
|
|
|
#include "gmConfig.h"
|
|
|
|
class gmMachine;
|
|
|
|
void gmBindStringLib(gmMachine * a_machine);
|
|
|
|
#endif // _GMSTRINGLIB_H_
|