Fixed horrible naming convention

This commit is contained in:
Kayne Ruse
2013-12-25 22:09:59 +11:00
parent baadf554cd
commit a494bfbb38
8 changed files with 58 additions and 18 deletions
+4 -4
View File
@@ -29,10 +29,10 @@
//Public access members
//-------------------------
InWorld::InWorld(ConfigUtility* const arg1, UDPNetworkUtility* const arg2, int* const arg3):
config(*arg1),
network(*arg2),
clientIndex(*arg3)
InWorld::InWorld(ConfigUtility* const argConfig, UDPNetworkUtility* const argNetwork, int* const argClientIndex):
config(*argConfig),
network(*argNetwork),
clientIndex(*argClientIndex)
{
//setup the utility objects
image.LoadSurface(config["dir.interface"] + "button_menu.bmp");