mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-23 10:52:36 +01:00
11 lines
240 B
C
11 lines
240 B
C
#ifndef DRLIMITS_H
|
|
#define DRLIMITS_H
|
|
|
|
// DRIVER 2 game engine limits
|
|
// please populate this file only with engine limits during refactoring
|
|
|
|
#define MAX_CARS 20
|
|
#define MAX_CAR_MODELS 5
|
|
#define MAX_PEDESTRIANS 28
|
|
|
|
#endif // DRLIMITS_H
|