mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
28 lines
447 B
C#
28 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.EchoesOfTheEye.Prisoner;
|
|
|
|
public class CustomSlideCollection
|
|
{
|
|
[SerializeField]
|
|
public CustomSlide[] slides;
|
|
|
|
public CustomSlideCollection(int startArrSize)
|
|
{
|
|
this.slides = new CustomSlide[startArrSize];
|
|
}
|
|
|
|
public CustomSlide this[int i]
|
|
{
|
|
get
|
|
{
|
|
return this.slides[i];
|
|
}
|
|
}
|
|
}
|