GUIStyle improvements & some simple UI graphics, networking bugfixes, separate Random class, some StyleCop cleanup

This commit is contained in:
Regalis
2015-07-02 22:24:50 +03:00
parent b493ed2b39
commit d836a99515
119 changed files with 8842 additions and 1277 deletions
+2 -2
View File
@@ -237,9 +237,9 @@ namespace Subsurface
public static void UpdateAll(float deltaTime)
{
for (int i = DelayedEffect.list.Count-1; i>= 0; i--)
for (int i = DelayedEffect.List.Count-1; i>= 0; i--)
{
DelayedEffect.list[i].Update(deltaTime);
DelayedEffect.List[i].Update(deltaTime);
}
}