mirror of
https://gitlab.com/shinovon/re3-symbian.git
synced 2026-05-22 17:47:20 +03:00
13 lines
224 B
C++
13 lines
224 B
C++
#pragma once
|
|
|
|
#define DEFAULT_MAX_NUMBER_OF_PEDS 25.0f
|
|
#define DEFAULT_MAX_NUMBER_OF_CARS 12.0f
|
|
|
|
class CIniFile
|
|
{
|
|
public:
|
|
static void LoadIniFile();
|
|
|
|
static float PedNumberMultiplier;
|
|
static float CarNumberMultiplier;
|
|
};
|