Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 15th, 2012  |  syntax: None  |  size: 0.32 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. //
  2. //  Decaf.m
  3. //  StarBuzz
  4. //
  5. //  Created by Takushi Homma on 12/07/21.
  6. //  Copyright (c) 2012年 mfmf.me. All rights reserved.
  7. //
  8.  
  9. #import "Decaf.h"
  10.  
  11. @implementation Decaf
  12.  
  13. - (id)init
  14. {
  15.   self = [super init];
  16.   if (self) {
  17.     _description = @"カフェイン抜き";
  18.   }
  19.   return self;
  20. }
  21.  
  22. - (double)cost
  23. {
  24.   return 1.05;
  25. }
  26.  
  27. @end