16 lines
280 B
C#
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;
|
|
}
|
|
}
|