Table of Contents

 
StartUp
 

Purpose

Fires up the engine

 

Protoype

void CTileMngr::StartUp (string str_config)
 

Parameters

config the name or path of the map config file
 

Description

This function loads in engine configuration data from a .cfg file created using the Data Generator application. Please see the Data Generator documentation for more information regarding the structure of the .cfg file for engine set-up.

NOTE: The extension of the data file does not have to be .cfg, that's just the extension used by the Data Generator application.

 

Use

CTileMngr tile_mngr;
tile_mngr.StartUp("tile_eng.cfg");
 

Prev: ShutDown