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
407 B
7 lines
407 B
#pragma once
|
|
#define ConfigInt(param) _GetInt(m,param,strategyNumber)
|
|
#define ConfigFloat(param) _GetFloat(m,param,strategyNumber)
|
|
#define ConfigString(param) _GetString(m,param,strategyNumber)
|
|
#define ConfigIntArr(param,ind) _GetInt(m,param,strategyNumber,ind)
|
|
#define ConfigFloatArr(param,ind) _GetFloat(m,param,strategyNumber,ind)
|
|
#define ConfigStringArr(param,ind) _GetString(m,param,strategyNumber,ind) |