コード例 #1
0
ファイル: Form1.cs プロジェクト: Jamie-/ToilAndBubble
 public PixelSpaceship(miniMT rng)
  {
      this.rng = rng;
      grid = new int[rows,cols];
      xscale = yscale = 1;
      xmargin = ymargin = 0;
  }
コード例 #2
0
ファイル: Form1.cs プロジェクト: Jamie-/ToilAndBubble
 public Form1()
 {
     InitializeComponent();                 
     rng = new miniMT();
     ship = new PixelSpaceship(rng);
     
     // fitter = new PixelSpaceshipFitter(480 / 16, 480 / 16, rng);
     // next();
 }