Go, roboto! Launch!! 🤖

This commit is contained in:
Victoria Drake
2020-02-02 11:03:57 -05:00
parent 0aa1ae6f78
commit de4dcd5d21
37 changed files with 12479 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
from bento import Beef, Mackerel, Sushi, Water
from kabukicho import neon
class RobotRestaurant:
# Come for the robots, stay for the neon
def make_robots(self):
self.robots = []
def make_robots_glow(self, neon):
self.robots.append(neon.everything)
def add_expensive_bento(self):
self.beef_bento = Beef()
self.fish_bento = Mackerel()
self.robot_sushi = Sushi()
self.mineral_water = Water()