Fluid Shots can be entered and stored in the database

This commit is contained in:
Patrick McDonagh
2017-02-10 14:39:45 -06:00
parent 0c6e09a6a4
commit 5b060cf6af
4 changed files with 69 additions and 7 deletions

View File

@@ -40,7 +40,7 @@ public class Well {
/* CARDS */
private Card currentCard;
private Card[] cardStorage = new Card[100];
public Card[] cardStorage = new Card[100];
// CONSTANTS
private static double YM_STEEL = 30.5;
@@ -333,6 +333,10 @@ public class Well {
return frictionEstimate;
}
public void setFrictionEstimate(double frictionEstimate) {
this.frictionEstimate = frictionEstimate;
}
public double getRodDepthTotal() {
return rodDepthTotal;
}