2015-11-22 08:32:19 +00:00
|
|
|
//------------------------------------------------------------------------------
|
2015-11-22 19:09:19 +00:00
|
|
|
// etcFunctions.cs
|
2015-11-22 08:32:19 +00:00
|
|
|
//
|
|
|
|
|
// Various helper functions that many Tribes 2 scripts expect to exist which
|
|
|
|
|
// can be implemented wholly in script. Those that must perform more
|
|
|
|
|
// sophisicated engines must be implemented as engine functions.
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
2015-11-22 19:09:19 +00:00
|
|
|
// We pretty much will always return false here because we're obviously
|
|
|
|
|
// not doing demo builds.
|
|
|
|
|
function isDemo()
|
2015-11-22 08:32:19 +00:00
|
|
|
{
|
2015-11-22 19:09:19 +00:00
|
|
|
return false;
|
2015-11-22 08:32:19 +00:00
|
|
|
}
|