Files
beyond/Assets/Plugins/Pixel Crushers/Quest Machine/Scripts/Utility/ByteData.cs
2024-11-20 15:21:28 +01:00

25 lines
416 B
C#

// Copyright (c) Pixel Crushers. All rights reserved.
using UnityEngine;
using System;
namespace PixelCrushers.QuestMachine
{
/// <summary>
/// Serializable array of bytes.
/// </summary>
[Serializable]
public class ByteData
{
public byte[] bytes;
public ByteData() { }
public ByteData(byte[] bytes)
{
this.bytes = bytes;
}
}
}