scripts
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
|
||||
namespace RecRoom.Challenges
|
||||
{
|
||||
// Token: 0x02000B2D RID: 2861
|
||||
public class HitstreakCountChallenge : TimedBufferChallenge
|
||||
{
|
||||
// Token: 0x06015B99 RID: 88985 RVA: 0x006070B8 File Offset: 0x006052B8
|
||||
public HitstreakCountChallenge()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x06015B9A RID: 88986 RVA: 0x006070C0 File Offset: 0x006052C0
|
||||
public HitstreakCountChallenge(int hitPerStreak, int totalCount)
|
||||
: base(new HitstreakChallenge(hitPerStreak), totalCount, -1f)
|
||||
{
|
||||
this.PersistBuffer = true;
|
||||
this.ProgressMode = TimedBufferChallenge.ProgressModes.Count;
|
||||
}
|
||||
|
||||
// Token: 0x1700090E RID: 2318
|
||||
// (get) Token: 0x06015B9B RID: 88987 RVA: 0x006070E4 File Offset: 0x006052E4
|
||||
public override ChallengeTypes ChallengeType
|
||||
{
|
||||
get
|
||||
{
|
||||
return ChallengeTypes.HitstreakCountChallenge;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user