Move ClientChangedHandMsg to Content assembly. This Resolves https://github.com/space-wizards/RobustToolbox/issues/703.

Update Submodule.
This commit is contained in:
Acruid
2019-08-31 17:49:18 -07:00
parent 9acf37e99d
commit fc046fb8ca
2 changed files with 13 additions and 1 deletions

View File

@@ -49,4 +49,16 @@ namespace Content.Shared.GameObjects
Index = index;
}
}
[Serializable, NetSerializable]
public class ClientChangedHandMsg : ComponentMessage
{
public string Index { get; }
public ClientChangedHandMsg(string index)
{
Directed = true;
Index = index;
}
}
}