Description:
Fix style and identation, more.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r349:766213f805d7 -

@@ -4,11 +4,6
4 namespace isometricparkfna
4 namespace isometricparkfna
5 {
5 {
6
6
7 //class MapRow
8 //{
9 // public List<MapCell> Columns = new List<MapCell>();
10 //}
11
12 public class CellMap
7 public class CellMap
13 {
8 {
14 public List<List<Cell>> cells;
9 public List<List<Cell>> cells;
@@ -194,7 +189,7
194 {
189 {
195 // public Boolean _hasTree = false;
190 // public Boolean _hasTree = false;
196 public CellStatus status {
191 public CellStatus status {
197 get;
192 get;
198 private set;
193 private set;
199 }
194 }
200
195
@@ -221,4 +216,4
221 }
216 }
222 }
217 }
223 }
218 }
224 } No newline at end of file
219 }
@@ -500,7 +500,9
500 #region input
500 #region input
501 //
501 //
502 #region misc_keys
502 #region misc_keys
503 if (keyboardCur.IsKeyDown(Keys.OemBackslash) && keyboardPrev.IsKeyUp(Keys.OemBackslash) && keyboardCur.IsKeyDown(Keys.LeftShift))
503 if (keyboardCur.IsKeyDown(Keys.OemBackslash)
504 && keyboardPrev.IsKeyUp(Keys.OemBackslash)
505 && keyboardCur.IsKeyDown(Keys.LeftShift))
504 {
506 {
505 sound.Play(volume, pitch, pan);
507 sound.Play(volume, pitch, pan);
506 }
508 }
You need to be logged in to leave comments. Login now