diff --git a/Products.java b/Products.java index f7449dc88bc5d7145412f02ddb14a7080f8adaab..0a50843d60bbcf0cdbae53bd0ded3d0d1ccfcefa 100644 --- a/Products.java +++ b/Products.java @@ -1,5 +1,14 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ + public Product rairai77sProudct() { + return new Product( + "Cheeto Dust", + "Just the good part (spicy)", + "cheetos.png", + "News about cheeto dust taking over", + 42.024 + ); + } public Product joshsProduct() { return new Product( "Dirt", diff --git a/Staff.java b/Staff.java index c2ebdf52f75f4116d33090b8f67e706a3575259e..839b3ec28d4d40bfa2610d970a920ce7cbc811a9 100644 --- a/Staff.java +++ b/Staff.java @@ -1,5 +1,13 @@ public class Staff { - + public Employee rairai77() { + return new Employee( + "Raahil Jain", + "Student", + "Sleepy", + "snorlax.png", + "A snorlax sitting" + ); + } public Employee faangPup() { return new Employee( "Steve", diff --git a/images/products/cheeto.png b/images/products/cheeto.png new file mode 100644 index 0000000000000000000000000000000000000000..f214c70fcccebf9da799deb04e4eec6b267a4d3e Binary files /dev/null and b/images/products/cheeto.png differ diff --git a/images/staff/snorlax.png b/images/staff/snorlax.png new file mode 100644 index 0000000000000000000000000000000000000000..7e4cb191089d41cc90ff14d6422c5bd421877da3 Binary files /dev/null and b/images/staff/snorlax.png differ