Add Purchase system
[cs356-p2-videostore.git] / app / models / game.rb
index 4991aa9..efdb260 100644 (file)
@@ -1,4 +1,9 @@
 class Game < Rentable
   validates_presence_of :game_genre
   validates_presence_of :platform
+
+  def calculated_price
+    # FIXME: generate this based on day of week, newrelase
+    return 11
+  end
 end