mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 18:02:23 +00:00
16 lines
327 B
C#
16 lines
327 B
C#
|
using System;
|
|||
|
|
|||
|
namespace FSO.Server.Protocol.Voltron
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
|
|||
|
public class cTSONetMessageParameter : Attribute
|
|||
|
{
|
|||
|
public object Value;
|
|||
|
|
|||
|
public cTSONetMessageParameter(object value)
|
|||
|
{
|
|||
|
this.Value = value;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|