# lines begining with # are comments

# This is the name of the game
#
name = Plee the Bear

# Define the size of the camera/screen
#
camera_width = 800
camera_height = 600

# Define the margin of the active areas around the players or the camera
#
active_area_margin = 500

# The folders where are the resources. You can set more than one resource_path.
# Spaces are not allowed in the paths.
#
# Do not forget the final /
#
resource_path = /usr/share/games/plee-the-bear/

# A library from which we can get symbols to instanciate item classes.
# The current program is added by default.
#
library = /usr/lib64/libbear_generic_items.so
library = /usr/lib64/plee-the-bear/libplee_the_bear.so

# The prefix to use for controller's layout file.
# We will append "_i" to its name, to get the controller's layout of the ith
# player
base_layout_file_name = controller_layout

# The file to use for text resources.
language_file = lang/english.lng

# The first level to load. This level must be in the list defined after.
#
start_level = start_level

# The list of all levels. Format is:
#
# level = level_name level_file
# 
# Spaces are not allowed in the name of the level nor the name of the file
#
level = start_level  level/gamned.cl
level = title_screen level/title_screen.cl
level = tutorial     level/tutorial.cl
level = demo         level/demo.cl
level = loading      level/loading.cl

