Hi,
Have you imported the AppWarp classes in your C# script. You need to have following in your script :
using com.shephertz.app42.gaming.multiplayer.client;
Or better you can import all namespaces
using com.shephertz.app42.gaming.multiplayer.client;
using com.shephertz.app42.gaming.multiplayer.client.events;
using com.shephertz.app42.gaming.multiplayer.client.listener;
using com.shephertz.app42.gaming.multiplayer.client.command;
using com.shephertz.app42.gaming.multiplayer.client.message;
using com.shephertz.app42.gaming.multiplayer.client.transformer;
Thanks