Skip to content
This repository was archived by the owner on Nov 7, 2018. It is now read-only.

Commit adcd37f

Browse files
committed
Add space before brace in HouseDrawer declaration
1 parent 3fa588c commit adcd37f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/Scripts/HouseDrawer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Road;
55
using Zenject;
66

7-
public class HouseDrawer : MonoBehaviour{
7+
public class HouseDrawer : MonoBehaviour {
88

99
[Inject]
1010
BoardTranslator translator;
@@ -46,7 +46,7 @@ private GameObject DrawHouseAtDeadEnd (Coordinate coords, Direction direction) {
4646
return Instantiate(tiles.houseTile, roadPosition + (ToDirectionVector(ToRadians((float)direction)) * 0.75f),
4747
Quaternion.Euler(0, 0, (float)direction + 90)) as GameObject;
4848
}
49-
49+
5050
private GameObject DrawHouseAtStraight (Coordinate coords, Direction direction) {
5151
float sceneX = translator.translateToSceneRow(coords.x);
5252
float sceneY = translator.translateToSceneColumn(coords.y);

0 commit comments

Comments
 (0)