Advertisement
Guest User

Bovine-Bull-scat

a guest
Mar 16th, 2016
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.58 KB | None | 0 0
  1. public bool HasPlatinum
  2.         {
  3.             get
  4.             {
  5.                 return _baseDenomination >= 1000000;
  6.             }
  7.         }
  8.  
  9.         public bool HasGold
  10.         {
  11.             get
  12.             {
  13.                 return _baseDenomination >= 10000;
  14.             }
  15.         }
  16.  
  17.         public bool HasSilver
  18.         {
  19.             get
  20.             {
  21.                 return _baseDenomination >= 100;
  22.             }
  23.         }
  24.  
  25.         public bool HasCopper
  26.         {
  27.             get
  28.             {
  29.                 return _baseDenomination > 0;
  30.             }
  31.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement