mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
Remove extra semicolons
This commit is contained in:
parent
6356e411be
commit
5879d24cb0
@ -14,7 +14,7 @@ public enum FilterLevel
|
||||
Warn = 3,
|
||||
Error = 4,
|
||||
SetInScripting = -1
|
||||
};
|
||||
}
|
||||
|
||||
public static FilterLevel currentLogLevel = FilterLevel.Info;
|
||||
|
||||
|
@ -180,7 +180,7 @@ public string DebugString()
|
||||
{
|
||||
return invokeType + ":" + invokeClass + ":" + invokeFunction.GetMethodName();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
static Dictionary<int, Invoker> s_CmdHandlerDelegates = new Dictionary<int, Invoker>();
|
||||
|
||||
|
@ -365,5 +365,5 @@ internal static void SetActive(bool state)
|
||||
{
|
||||
s_IsActive = state;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -1065,5 +1065,5 @@ public static void UNetStaticUpdate()
|
||||
NetworkClient.UpdateClients();
|
||||
NetworkManager.UpdateScene();
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -10,7 +10,7 @@ public enum PlayerSpawnMethod
|
||||
{
|
||||
Random,
|
||||
RoundRobin
|
||||
};
|
||||
}
|
||||
|
||||
[AddComponentMenu("Network/NetworkManager")]
|
||||
public class NetworkManager : MonoBehaviour
|
||||
|
@ -12,7 +12,7 @@ public enum CheckMethod
|
||||
{
|
||||
Physics3D,
|
||||
Physics2D
|
||||
};
|
||||
}
|
||||
|
||||
[TooltipAttribute("The maximum range that objects will be visible at.")]
|
||||
public int visRange = 10;
|
||||
|
@ -322,5 +322,5 @@ public override string ToString()
|
||||
msg.Deserialize(this);
|
||||
return msg;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -1292,5 +1292,5 @@ public static bool SpawnObjects()
|
||||
}
|
||||
return true;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -387,5 +387,5 @@ public void Write(MessageBase msg)
|
||||
{
|
||||
msg.Serialize(this);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -220,7 +220,7 @@ public enum Operation
|
||||
OP_REMOVEAT,
|
||||
OP_SET,
|
||||
OP_DIRTY
|
||||
};
|
||||
}
|
||||
|
||||
NetworkBehaviour m_Behaviour;
|
||||
int m_CmdHash;
|
||||
|
@ -91,5 +91,5 @@ void ProcessMethods()
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user