Browse Source

capitalize struct field names

GitOrigin-RevId: 6b4cca3873
master
Colin McMillen 4 years ago
parent
commit
3246f8ea45
  1. 24
      Shared/Debug.cs

24
Shared/Debug.cs

@ -5,24 +5,24 @@ using System.Collections.Generic;
namespace SemiColinGames {
static class Debug {
struct DebugRect {
public Rectangle rect;
public Color color;
public Rectangle Rect;
public Color Color;
public DebugRect(Rectangle rect, Color color) {
this.rect = rect;
this.color = color;
Rect = rect;
Color = color;
}
}
struct DebugLine {
public Point start;
public Point end;
public Color color;
public Point Start;
public Point End;
public Color Color;
public DebugLine(Point start, Point end, Color color) {
this.start = start;
this.end = end;
this.color = color;
Start = start;
End = end;
Color = color;
}
}
@ -83,9 +83,9 @@ namespace SemiColinGames {
return;
}
foreach (var debugRect in rects) {
var rect = debugRect.rect;
var rect = debugRect.Rect;
rect.Offset(-camera.Left, 0);
var color = debugRect.color;
var color = debugRect.Color;
// top side
spriteBatch.Draw(
whiteTexture, new Rectangle(rect.Left, rect.Top, rect.Width, 1), color);

Loading…
Cancel
Save