Files
Simulation/Assets/Scripts/Data/CameraEntity.cs
2025-07-18 11:35:21 +09:00

16 lines
280 B
C#

using System;
namespace Octopus.Simulator.Camera
{
[Serializable]
public class CameraEntity
{
public float posX;
public float posY;
public float posZ;
public float rotX;
public float rotY;
public float rotZ;
}
}