diff --git a/Products.java b/Products.java index 40655c055b65983559d1c3a57f4a87e39b908645..99c71cf9b809c1011c3bf5a04aa15853a4506431 100644 --- a/Products.java +++ b/Products.java @@ -1,5 +1,6 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ + public Product rairai77sProudct() { return new Product( "Cheeto Dust", @@ -9,6 +10,16 @@ public class Products { /* a good class, but not as good as cse391 */ 42.024 ); } + public Product kevinsProduct(){ + return new Product( + "Basketball", + "Bouncy bouncy orange ball", + "basketball.jpg", + "Picture of a basketball", + 42.0 + ); + } + public Product joshsProduct() { return new Product( "Dirt", diff --git a/Staff.java b/Staff.java index 9eb731f5ee16717b7d7bee9eaf76cd5547c9beac..cc8d002343f5dd0d4133c245ec1bb0ce52e47785 100644 --- a/Staff.java +++ b/Staff.java @@ -8,6 +8,16 @@ public class Staff { "A snorlax sitting" ); } + public Employee xckevin(){ + return new Employee( + "Kevin", + "Bro", + "chill dude", + "kevin.jpg", + "Photo" + ); + } + public Employee faangPup() { return new Employee( "Steve", diff --git a/images/products/basketball.jpg b/images/products/basketball.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17ea901ee0e49cb8308c300579eeddb4bd76b915 Binary files /dev/null and b/images/products/basketball.jpg differ diff --git a/images/staff/kevin.jpg b/images/staff/kevin.jpg new file mode 100755 index 0000000000000000000000000000000000000000..4efe5aa77783558a609ad2db33e17db2a916fc1d Binary files /dev/null and b/images/staff/kevin.jpg differ