Rename Methods to Start with Capital Letter
Post date:
2016-04-19 13:16
Project:
Assignee:
Labels:
Status:
Priority:
There are a number of methods in the Tiler.cs file that have lower case names. For example:
public void fillRectArray()
{
Rooms = GetComponentsInChildren<RectTransform>().ToList<RectTransform>();
}
Please refactor all of these to start with a capital letter like so:
public void FillRectArray()
Add new comment