Skip to content

Latest commit

 

History

History

Using-Adventurelib

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Learn Python

Using Adventurelib

An adaptation of the Zombie-House game using the Adventurelib library.

Full documentation of Adventurelib is here.

This library contains classes that can be used to create objects in the game such as rooms and items to be placed into the player's inventory. Using the Adventurelib library is an introduction to Object-Oriented Programming (OOP) concepts.

New Concepts:

  • Class

    1. Room()
    2. Item()
    3. Bag()
  • Functions

    1. start()
    2. say()
  • Decorators

    1. @when