Description:
Fix some compiler warnings.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r606:d16efba8fb5d -

1 NO CONTENT: modified file, binary diff hidden
@@ -46,10 +46,6
46 46 private int height;
47 47 private int width;
48 48
49 private SoundEffect sound;
50 private SoundEffect startSound;
51 private SoundEffect endSound;
52
53 49 public InputEngine(int menuBarHeight, Camera camera,
54 50 GraphicsDeviceManager gdm, int height, int width) {
55 51 //initialize to blank for now
@@ -60,10 +56,6
60 56 this.graphicsDevice = gdm.GraphicsDevice;
61 57 this.height = height;
62 58 this.width = width;
63
64 this.sound = sound;
65 this.startSound = startSound;
66 this.endSound = endSound;
67 59 }
68 60
69 61
@@ -122,7 +122,7
122 122 #region calculate_preserve_cells
123 123 // var preserve_cells = new HashSet<isometricparkfna.CellMap.Cell>();
124 124 var preserve_cell_coordinates = new List<(int, int)>();
125 var count = 0;
125 // var count = 0;
126 126
127 127 Stopwatch iterPreserves = new Stopwatch();
128 128 iterPreserves.Start();
You need to be logged in to leave comments. Login now