Fixed correct package

This commit is contained in:
Paul Pacheco 2018-08-30 22:36:31 -05:00 committed by GitHub
parent 6c25b7aa37
commit fff0fe7e00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,9 +11,9 @@ Get Mirror from the asset store and import it in your project (link to be provid
## 3) Replace namespace ##
Replace `Unity.Networking` for `Mirror` everywhere in your project. So for example, if you have this:
Replace `UnityEngine.Networking` for `Mirror` everywhere in your project. So for example, if you have this:
```
using Unity.Networking;
using UnityEngine.Networking;
public class Player : NetworkBehaviour {
...