# HG changeset patch # User Alys Brooks # Date 2021-07-02 05:06:56 # Node ID 766213f805d7f408d3373bc9e07905d3b3a53308 # Parent 62f098125aa42d148f12dc42f173006cb9d4aac1 Fix style and identation, more. diff --git a/isometric-park-fna/CellMap.cs b/isometric-park-fna/CellMap.cs --- a/isometric-park-fna/CellMap.cs +++ b/isometric-park-fna/CellMap.cs @@ -4,11 +4,6 @@ namespace isometricparkfna { - //class MapRow - //{ - // public List Columns = new List(); - //} - public class CellMap { public List> cells; @@ -194,7 +189,7 @@ { // public Boolean _hasTree = false; public CellStatus status { - get; + get; private set; } @@ -221,4 +216,4 @@ } } } -} \ No newline at end of file +} diff --git a/isometric-park-fna/FNAGame.cs b/isometric-park-fna/FNAGame.cs --- a/isometric-park-fna/FNAGame.cs +++ b/isometric-park-fna/FNAGame.cs @@ -500,7 +500,9 @@ #region input // #region misc_keys - if (keyboardCur.IsKeyDown(Keys.OemBackslash) && keyboardPrev.IsKeyUp(Keys.OemBackslash) && keyboardCur.IsKeyDown(Keys.LeftShift)) + if (keyboardCur.IsKeyDown(Keys.OemBackslash) + && keyboardPrev.IsKeyUp(Keys.OemBackslash) + && keyboardCur.IsKeyDown(Keys.LeftShift)) { sound.Play(volume, pitch, pan); }