# 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 = 640
camera_height = 480

# 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 = data/

# The resource archives. You can set more than one resource_archive.
# Spaces are not allowed in the path nor the name of the archives.
#
resource_archive = data/resources.ra

# 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  start_level.cl
level = title_screen title_screen.cl
level = level_select level_select.cl
level = forest_1     forest_1.cl
level = forest_2     forest_2.cl
