Advertisement
Festelo

Untitled

Sep 26th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.45 KB | None | 0 0
  1.  
  2.         List<MoveList> moveList = null;
  3.         List<figure> figLiveList = null;
  4.         figure[,] figPosAr = null;
  5.         Grid gr = null;
  6.         List<StrokeData> StrokeHis = null;
  7.  
  8.         public Moves(List<MoveList> ml, List<figure> fll, figure[,] fPA, Grid grid, List<StrokeData> sh)
  9.         {
  10.             moveList = ml;
  11.             figLiveList = fll;
  12.             figPosAr = fPA;
  13.             gr = grid;
  14.             StrokeHis = sh;
  15.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement