You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### OOP - Building Your Own Classes, Constructors and Methods
4
+
5
+
An adaptation of the Zombie-House game using Object-Oriented Programming concepts.
6
+
7
+
There are many good resources for learning OOP. These examples are based on a course developed by the Raspberry Pi Foundation:
8
+
[Object-oriented Programming in Python: Create Your Own Adventure Game](https://www.futurelearn.com/courses/object-oriented-principles). This is a free course and enrollment is open several times a year.
9
+
10
+
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. By using the Adventurelib library, you are beginning to learn the use of Object-Oriented Programming.
Copy file name to clipboardExpand all lines: Using-Adventurelib/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ An adaptation of the Zombie-House game using the Adventurelib library.
6
6
7
7
Full documentation of Adventurelib is [here](https://adventurelib.readthedocs.io/).
8
8
9
-
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.
9
+
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.
0 commit comments