mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
19 lines
317 B
C#
19 lines
317 B
C#
namespace MoleMole
|
|
{
|
|
public class EvtQTEFire : BaseEvent
|
|
{
|
|
public string QTEName;
|
|
|
|
public EvtQTEFire(uint targetID, string qteName)
|
|
: base(targetID)
|
|
{
|
|
QTEName = qteName;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("{0} qte fired {1}", GetDebugName(targetID), QTEName);
|
|
}
|
|
}
|
|
}
|