Description:
Fix some compiler warnings.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
|
1 | NO CONTENT: modified file, binary diff hidden |
|
NO CONTENT: modified file, binary diff hidden |
@@ -46,10 +46,6 | |||||
|
46 | private int height; |
|
46 | private int height; |
|
47 | private int width; |
|
47 | private int width; |
|
48 |
|
48 | ||
|
49 | private SoundEffect sound; |
|
||
|
50 | private SoundEffect startSound; |
|
||
|
51 | private SoundEffect endSound; |
|
||
|
52 |
|
|||
|
53 | public InputEngine(int menuBarHeight, Camera camera, |
|
49 | public InputEngine(int menuBarHeight, Camera camera, |
|
54 | GraphicsDeviceManager gdm, int height, int width) { |
|
50 | GraphicsDeviceManager gdm, int height, int width) { |
|
55 | //initialize to blank for now |
|
51 | //initialize to blank for now |
@@ -60,10 +56,6 | |||||
|
60 | this.graphicsDevice = gdm.GraphicsDevice; |
|
56 | this.graphicsDevice = gdm.GraphicsDevice; |
|
61 | this.height = height; |
|
57 | this.height = height; |
|
62 | this.width = width; |
|
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 | #region calculate_preserve_cells |
|
122 | #region calculate_preserve_cells |
|
123 | // var preserve_cells = new HashSet<isometricparkfna.CellMap.Cell>(); |
|
123 | // var preserve_cells = new HashSet<isometricparkfna.CellMap.Cell>(); |
|
124 | var preserve_cell_coordinates = new List<(int, int)>(); |
|
124 | var preserve_cell_coordinates = new List<(int, int)>(); |
|
125 | var count = 0; |
|
125 | // var count = 0; |
|
126 |
|
126 | ||
|
127 | Stopwatch iterPreserves = new Stopwatch(); |
|
127 | Stopwatch iterPreserves = new Stopwatch(); |
|
128 | iterPreserves.Start(); |
|
128 | iterPreserves.Start(); |
You need to be logged in to leave comments.
Login now