The open source repository for the action RPG game in development by Sig Productions titled 'Adventures in Lestoria'!
https://forums.lestoria.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
389 B
7 lines
389 B
#pragma once
|
|
#define GetInt(param) _GetInt(m,param,strategyNumber)
|
|
#define GetFloat(param) _GetFloat(m,param,strategyNumber)
|
|
#define GetString(param) _GetString(m,param,strategyNumber)
|
|
#define GetIntArr(param,ind) _GetInt(m,param,strategyNumber,ind)
|
|
#define GetFloatArr(param,ind) _GetFloat(m,param,strategyNumber,ind)
|
|
#define GetStringArr(param,ind) _GetString(m,param,strategyNumber,ind) |