15 lines
272 B
C#
15 lines
272 B
C#
using System;
|
|
|
|
namespace Simulator.CameraData
|
|
{
|
|
[Serializable]
|
|
public class CameraEntity
|
|
{
|
|
public float posX;
|
|
public float posY;
|
|
public float posZ;
|
|
public float rotX;
|
|
public float rotY;
|
|
public float rotZ;
|
|
}
|
|
} |