Skip to content
Snippets Groups Projects
Commit ca469555 authored by BotyDns's avatar BotyDns
Browse files

Comment RobberRolledEventArgs

parent 385267cb
No related branches found
No related tags found
No related merge requests found
Pipeline #30809 canceled
......@@ -6,8 +6,14 @@ using System.Threading.Tasks;
namespace CatanGame.Model
{
/// <summary>
/// Represents the arguments for the RobberRolled event.
/// </summary>
public class RobberRolledEventArgs
{
/// <summary>
/// Gets or sets the possible robber positions.
/// </summary>
public List<(int R, int Q)> PossibleRobberPositions { get; set; }
public RobberRolledEventArgs(List<(int R, int Q)> possibleRobberPositions)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment