Menu script having problem

Hi guys i have no clue how to solve this problem.I have a public class (player) in another script but when i try using that class in my menu script it says The type or namespace name `Player’ could not be found. Are you missing a using directive or an assembly reference?
Here are my 2 scripts
With player class-NetworkManager - Pastebin.com
Menu-
Error - Pastebin.com
I checked that i have correct spelling including caps.

Hello,

Player is inside your network class

solutions :

  1. Make a dedicated script for player

  2. Make that class static (access it with NetworkManager .Player) doc

  3. Make an instance of network Class to be able to reference the Player class (tuto)

if anyone see other solutions feel free to complete :stuck_out_tongue:

regards