mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
16 lines
347 B
C#
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;
|
|
}
|
|
}
|
|
} |