31 lines
635 B
C#
31 lines
635 B
C#
#region copyright
|
|
// ---------------------------------------------------------------
|
|
// Copyright (C) Dmitriy Yukhanov - focus [https://codestage.net]
|
|
// ---------------------------------------------------------------
|
|
#endregion
|
|
|
|
namespace CodeStage.AntiCheat.Common
|
|
{
|
|
using System;
|
|
|
|
[Serializable]
|
|
internal struct ACTkByte16
|
|
{
|
|
public byte b1;
|
|
public byte b2;
|
|
public byte b3;
|
|
public byte b4;
|
|
public byte b5;
|
|
public byte b6;
|
|
public byte b7;
|
|
public byte b8;
|
|
public byte b9;
|
|
public byte b10;
|
|
public byte b11;
|
|
public byte b12;
|
|
public byte b13;
|
|
public byte b14;
|
|
public byte b15;
|
|
public byte b16;
|
|
}
|
|
} |