# A First Look at Verse
This is an introduction to creating scenarios in Verse. An interactive tutorial with more details are in [this Jupyter notebook](https://github.com/AutoVerse-ai/Verse-library/blob/main/tutorial/tutorial.ipynb).
A Verse *scenario* is defined by a *map*, a set of *agents*, and optionally a *sensor*. We will create a scenario with a drone following a straight path that dodges obstacles by moving up or down.
## Import a map
A *map* specifies the *tracks* or paths that the agents *is allowed to follow*. Our map will have two kinds of tracks:
1. T0 is an x-axis aligned track
2. TAvoidUp is a upward track for avoiding obstacles on the x-axis.
T0
and TAvoidUp
are called the *track modes* in Verse. To create new maps of your own, see {doc}`Map