mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
17 lines
471 B
C#
17 lines
471 B
C#
using SS14.Shared.GO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SS14.Shared
|
|
{
|
|
public struct IncomingEntityComponentMessage
|
|
{
|
|
public ComponentFamily ComponentFamily;
|
|
public List<object> MessageParameters;
|
|
|
|
public IncomingEntityComponentMessage(ComponentFamily componentFamily, List<object> messageParameters)
|
|
{
|
|
ComponentFamily = componentFamily;
|
|
MessageParameters = messageParameters;
|
|
}
|
|
}
|
|
} |