diff --git a/Products.java b/Products.java index b639a8130ecc314696537e032966b175001da833..f02d9918c54fe6c70653fe4b14ae613ef249a8da 100644 --- a/Products.java +++ b/Products.java @@ -9,4 +9,14 @@ public class Products { /* a good class, but not as good as cse391 */ 0.0 ); } + + public Product antoniosProduct() { + return new Product( + "Emacs", + "It's better than Vim", + "emacs_icon.png", + "GNU emacs logo", + 0.0 + ); + } } diff --git a/Staff.java b/Staff.java index edccd20ac36afca592b6b7ea4565271663271a7b..a8ac5f0c1810e5f636a6e9ec12b1e719bb395841 100644 --- a/Staff.java +++ b/Staff.java @@ -19,4 +19,14 @@ public class Staff { "Colton smiling with a forest in the background" ); } -} + + public Employee antonio6() { + return new Employee( + "Antonio", + "Teaching Assistant", + "Tries to help", + "void.jpg", + "My favorite plushie void the demodog chillin on the floor" + ); + } +} diff --git a/images/products/emacs_icon.png b/images/products/emacs_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..e95b2fc85001d22d28a770b6aa0c02fcbd103226 Binary files /dev/null and b/images/products/emacs_icon.png differ diff --git a/images/staff/void.jpg b/images/staff/void.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65c61ecc15730f9abc9a6694fc2fb28efb5606fe Binary files /dev/null and b/images/staff/void.jpg differ