11 lines
262 B
C#
11 lines
262 B
C#
using UnityEngine;
|
|
|
|
namespace Bytes
|
|
{
|
|
public class TransformDataBytes : BytesData
|
|
{
|
|
public TransformDataBytes(Transform transformValue) { TransformValue = transformValue; }
|
|
public Transform TransformValue { get; private set; }
|
|
}
|
|
}
|