mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
26 lines
412 B
C#
26 lines
412 B
C#
using CinemaDirector;
|
|
|
|
namespace MoleMole
|
|
{
|
|
public class EvtCinemaFinish : BaseEvent
|
|
{
|
|
private Cutscene _cutScene;
|
|
|
|
public EvtCinemaFinish(uint targetID, Cutscene cutScene)
|
|
: base(targetID)
|
|
{
|
|
_cutScene = cutScene;
|
|
}
|
|
|
|
public Cutscene GetCutscene()
|
|
{
|
|
return _cutScene;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} Evt SlowMotionKillFinish", targetID);
|
|
}
|
|
}
|
|
}
|