1# The script of the game goes in this file.
2
3# Declare characters used by this game. The color argument colorizes the
4# name of the character.
5
6define e = Character("Eileen")
7
8
9# The game starts here.
10
11label start:
12
13    # Show a background. This uses a placeholder by default, but you can
14    # add a file (named either "bg room.png" or "bg room.jpg") to the
15    # images directory to show it.
16
17    scene bg room
18
19    # This shows a character sprite. A placeholder is used, but you can
20    # replace it by adding a file named "eileen happy.png" to the images
21    # directory.
22
23    show eileen happy
24
25    # These display lines of dialogue.
26
27    e "You've created a new Ren'Py game."
28
29    e "Once you add a story, pictures, and music, you can release it to the world!"
30
31    # This ends the game.
32
33    return
34