diff --git a/Products.java b/Products.java index 00e0bcf1c33e3b3e08ade700613b0c7cce764d5e..91763b30d8f21c7fec98f94116d6a1a7dc2fb0b9 100644 --- a/Products.java +++ b/Products.java @@ -79,6 +79,16 @@ public class Products { /* a good class, but not as good as cse391 */ ); } + public Product isaacsProduct() { + return new Product( + "Bucolic Green Hills", + "Take a deep breath and relax", + "windows_xp_bliss.jpeg", + "rolling grass fields, blue skies, white clouds", + 100000 + ); + } + public Product aamangusProduct() { return new Product( "Broody Chicken", diff --git a/Staff.java b/Staff.java index 549122b5474f7fdde4e69c4ba032ac3b4ccb2ab7..874f89ad32e96dc859f0741000e2c3190e2986b5 100644 --- a/Staff.java +++ b/Staff.java @@ -98,6 +98,16 @@ public class Staff { ); } + public Employee isaacwu() { + return new Employee( + "Isaac", + "Programmer", + "Can I go to sleep now?", + "icon.jpeg", + "angrily studying" + ); + } + public Employee aamangus() { return new Employee( "Anthony", diff --git a/images/products/windows_xp_bliss.jpeg b/images/products/windows_xp_bliss.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..c37a8469d162a3b0bf2ee9818ae122faf93184bb Binary files /dev/null and b/images/products/windows_xp_bliss.jpeg differ diff --git a/images/staff/icon.jpeg b/images/staff/icon.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9b50ea9ddd8fead4263c59528af2bd2fd0631c40 Binary files /dev/null and b/images/staff/icon.jpeg differ