12 lines
247 B
C#
12 lines
247 B
C#
|
|
using UnityEngine;
|
|
|
|
namespace Bytes
|
|
{
|
|
public class Vector3DataBytes : BytesData
|
|
{
|
|
public Vector3DataBytes(Vector3 vector3Value) { Vector3Value = vector3Value; }
|
|
public Vector3 Vector3Value { get; private set; }
|
|
}
|
|
}
|