using Robust.Shared.GameObjects; namespace Robust.Client.GameObjects { [NotContentImplementable] public interface IClientEntityManager : IEntityManager, IEntityNetworkManager { /// /// Raises a networked message as if it had arrived from the sever. /// public void DispatchReceivedNetworkMsg(EntityEventArgs msg); } }