-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/Show_equpped_titan
- Loading branch information
Showing
20 changed files
with
554 additions
and
553 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using System; | ||
using Process.NET; | ||
|
||
namespace titanfall2_rp.MpGameStats | ||
{ | ||
public class AmpedHardpoint : MpStats | ||
{ | ||
public AmpedHardpoint(Titanfall2Api tf2Api, ProcessSharp processSharp) : base(tf2Api, processSharp) | ||
{ } | ||
|
||
/// <summary> | ||
/// Get the assault score of the current user. | ||
/// </summary> | ||
/// <returns>the user's assault score</returns> | ||
public int GetMyAssaultScore() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the defense score of the current user. | ||
/// </summary> | ||
/// <returns>the user's defense score</returns> | ||
public int GetMyDefenseScore() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the kill count of the current user. | ||
/// </summary> | ||
/// <returns>the user's kill count</returns> | ||
public int GetMyKills() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
using System; | ||
using Process.NET; | ||
|
||
namespace titanfall2_rp.MpGameStats | ||
{ | ||
public class Attrition : MpStats | ||
{ | ||
public Attrition(Titanfall2Api tf2Api, ProcessSharp processSharp) : base(tf2Api, processSharp) | ||
{ } | ||
|
||
/// <summary> | ||
/// Get the score of the current user. | ||
/// </summary> | ||
/// <returns>the user's score</returns> | ||
public int GetMyScore() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the pilot kills of the current user. | ||
/// </summary> | ||
/// <returns>the number of pilots the user has killed</returns> | ||
public int GetMyPilotKills() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the titan kills of the current user. | ||
/// </summary> | ||
/// <returns>the number of titans the user has killed</returns> | ||
public int GetMyTitanKills() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the minion kills of the current user. | ||
/// </summary> | ||
/// <returns>the number of minions the user has killed</returns> | ||
public int GetMyMinionKills() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using System; | ||
using Process.NET; | ||
|
||
namespace titanfall2_rp.MpGameStats | ||
{ | ||
public class BountyHunt : MpStats | ||
{ | ||
public BountyHunt(Titanfall2Api tf2Api, ProcessSharp processSharp) : base(tf2Api, processSharp) | ||
{ } | ||
|
||
/// <summary> | ||
/// Get the score of the current user. | ||
/// </summary> | ||
/// <returns>the user's score</returns> | ||
public int GetMyScore() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the bonus of the current user. | ||
/// </summary> | ||
/// <returns>the user's bonus</returns> | ||
public int GetMyBonus() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the kills of the current user. | ||
/// </summary> | ||
/// <returns>the user's kills</returns> | ||
public int GetMyKills() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
using System; | ||
using Process.NET; | ||
|
||
namespace titanfall2_rp.MpGameStats | ||
{ | ||
public class CaptureTheFlag : MpStats | ||
{ | ||
public CaptureTheFlag(Titanfall2Api tf2Api, ProcessSharp processSharp) : base(tf2Api, processSharp) | ||
{ } | ||
|
||
/// <summary> | ||
/// Get whether the game has passed halftime | ||
/// </summary> | ||
/// <returns>true if in the 2nd half, false if halftime hasn't happened yet</returns> | ||
public bool IsInSecondHalf() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the amount of time in seconds remaining in the current half | ||
/// </summary> | ||
/// <returns>the time in seconds remaining in the current half</returns> | ||
public int GetTimeRemainingInHalf() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the number of captures the user has achieved | ||
/// </summary> | ||
/// <returns>the number of captures the user has achieved</returns> | ||
public int GetMyCaptures() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the number of times the user returned their team's flag | ||
/// </summary> | ||
/// <returns>the number of times the user returned their team's flag</returns> | ||
public int GetMyReturns() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
|
||
/// <summary> | ||
/// Get the number of kills the user has made | ||
/// </summary> | ||
/// <returns>the number of players the user has killed</returns> | ||
public int GetMyKills() | ||
{ | ||
throw new NotImplementedException(HelpMeBruh); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using Process.NET; | ||
|
||
namespace titanfall2_rp.MpGameStats | ||
{ | ||
public class Coliseum : MpStats | ||
{ | ||
public Coliseum(Titanfall2Api tf2Api, ProcessSharp processSharp) : base(tf2Api, processSharp) | ||
{ } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using Process.NET; | ||
|
||
namespace titanfall2_rp.MpGameStats | ||
{ | ||
public class FrontierDefense : MpStats | ||
{ | ||
public FrontierDefense(Titanfall2Api tf2Api, ProcessSharp processSharp) : base(tf2Api, processSharp) | ||
{ } | ||
} | ||
} |
Oops, something went wrong.