From 02130cb948b38aa911777ad9f1e4dfd8cc4c19e6 Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Thu, 8 Oct 2020 23:34:40 -0400
Subject: [PATCH] Update readme

---
 README.md => readme.md | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)
 rename README.md => readme.md (97%)

diff --git a/README.md b/readme.md
similarity index 97%
rename from README.md
rename to readme.md
index c5f8f7a..dfca7ae 100644
--- a/README.md
+++ b/readme.md
@@ -1,19 +1,15 @@
-# Assignment 3 - Inheritance, Abstract Classes, Interfaces, and Polymorphism
+# C# - Inheritance, Abstract Classes, Interfaces, and Polymorphism
 
-## Author
 
-Brandon Rodriguez
-
-## Descritpion
-
-This program is a fairly simple interface which allows a customer to purchase droids, using concepts of inheritance.
+## Description
+This program is a fairly simple interface which allows a customer to purchase droids, using concepts of abstraction and inheritance.
 
 The user can select from four types of droids and select from varying features for each type. Once chosen, the user can display either a receipt of all droids bought or the full information about a single droid. Also has the option to clear out data for new customer.
 
 Currently, all features are set to basically cost the same price.
 
-## Project Requirements
 
+## Project Requirements
 The Jawas on Tatooine have recently opened a droid factory and they want to hire you to write a program to hold a list of the available droids, and the price of each droid. The price is based on the type: (protocol, utility, janitor, or astromech), the material used and the options selected by the Jawa creating the list.
 
 The program will keep a list of Droids that are created. This list can be either an array or in the form of one of the C# List classes. The array or list should be of a type that is high enough on the inheritance chain that all droids no matter what type they are can be stored in it. (Think Polymorphism)
@@ -92,14 +88,14 @@ Solution Must:
 * Use abstract, virtual, and override appropriately.
 * Have sufficient comments about what you are doing in the code.
 
-### Notes
 
+### Notes
 If you did not do well on Assignment 1, you may want to look at the Assignment 1 Key that I did for some help related to UI classes, Collection classes, arrays, and structure.
 
 It may be benificial for you to create extra methods within the droid sub classes. You are not limited to the ones mentioned. You may even find it useful to make some additional ones that are protected and virtual.
 
-## Outside Resources Used
 
+## Outside Resources Used
 https://msdn.microsoft.com/en-us/library/ah19swz4.aspx
 https://msdn.microsoft.com/en-us/library/aa288471%28v=vs.71%29.aspx
 * Structs for ease of organization.
@@ -107,7 +103,6 @@ https://msdn.microsoft.com/en-us/library/aa288471%28v=vs.71%29.aspx
 https://msdn.microsoft.com/en-us/library/hfw7t1ce.aspx
 * Figured out how to use base in a void override method.
 
-## Known Problems, Issues, And/Or Errors in the Program
 
+## Known Problems, Issues, And/Or Errors in the Program
 All features use the same price, essentially. Should the program need to be expanded for variation of prices, consider using commit 1e70e60 as the base.
-
-- 
GitLab