mirror of
https://github.com/Alee14/OpenHacknet.git
synced 2025-01-22 09:12:44 -05:00
15 lines
No EOL
303 B
C#
15 lines
No EOL
303 B
C#
using System;
|
|
using Microsoft.Xna.Framework;
|
|
|
|
namespace Hacknet
|
|
{
|
|
internal class PlayerIndexEventArgs : EventArgs
|
|
{
|
|
public PlayerIndexEventArgs(PlayerIndex playerIndex)
|
|
{
|
|
PlayerIndex = playerIndex;
|
|
}
|
|
|
|
public PlayerIndex PlayerIndex { get; }
|
|
}
|
|
} |