Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/CinemaDirector/ShotEventArgs.cs
2025-08-13 09:26:42 +08:00

15 lines
186 B
C#

using System;
namespace CinemaDirector
{
public class ShotEventArgs : EventArgs
{
public CinemaShot shot;
public ShotEventArgs(CinemaShot shot)
{
this.shot = shot;
}
}
}