mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2025-02-18 11:06:22 +01:00
14 lines
224 B
C++
14 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;
|
|
};
|