Files
RobustToolbox/SS14.Client.Interfaces/GOC/GetSVarsEventArgs.cs
2015-01-23 01:15:33 -05:00

16 lines
347 B
C#

using SS14.Shared.GO;
using System;
using System.Collections.Generic;
namespace SS14.Client.Interfaces.GOC
{
public class GetSVarsEventArgs : EventArgs
{
public List<MarshalComponentParameter> SVars;
public GetSVarsEventArgs(List<MarshalComponentParameter> sVars)
{
SVars = sVars;
}
}
}