14 lines
211 B
C#
14 lines
211 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace BigSpace.XRCore.Video
|
|
{
|
|
public class VideoData
|
|
{
|
|
public string name;
|
|
public float time;
|
|
|
|
}
|
|
}
|