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

Untitled

By: a guest on Apr 25th, 2012  |  syntax: C#  |  size: 0.36 KB  |  hits: 18  |  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. //Factors.cs:
  2.  
  3. public class Factors {
  4.         //Beispiel für Faktoren, die sicht NICHT verändern bei speed Unis
  5.         static public dobule MetalMine = 1.5;
  6.  
  7.         //Beispiel für Faktoren, die sich bei Speed Unis verändern
  8.         public double Metal = 60;
  9. }
  10.  
  11. //In der FrohgameSession fügst du eine Property hinzu:
  12.  
  13. Factors _factorz;
  14. public Factors Factorz {
  15.         get; set;
  16. }
  17.  
  18. //