mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
13 lines
362 B
C#
13 lines
362 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Robust.Client.GameObjects
|
|
{
|
|
public interface IClientEntityManager : IEntityManager, IEntityNetworkManager
|
|
{
|
|
/// <summary>
|
|
/// Raises a networked message as if it had arrived from the sever.
|
|
/// </summary>
|
|
public void DispatchReceivedNetworkMsg(EntityEventArgs msg);
|
|
}
|
|
}
|