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