C# Class ACR_ServerCommunicator.GUIResynchronizer.ResyncState

Resync state for a player.
Afficher le fichier Open project: ALandFarAway/ALFA-Base-Resources

Méthodes publiques

Свойство Type Description
PlayerId int
ResyncFlags uint

Méthodes publiques

Méthode Description
FromString ( string ResyncCommand ) : ResyncState

Deserialize the resynchronization state from a string.

ResyncState ( int PlayerId, uint ResyncFlags ) : System

Construct a new ResyncState object.

ToString ( ) : string

Convert the resynchronization state to a string.

Method Details

FromString() public static méthode

Deserialize the resynchronization state from a string.
public static FromString ( string ResyncCommand ) : ResyncState
ResyncCommand string Supplies the state string that was /// constructed by a call to ToString().
Résultat ResyncState

ResyncState() public méthode

Construct a new ResyncState object.
public ResyncState ( int PlayerId, uint ResyncFlags ) : System
PlayerId int Supplies the player id.
ResyncFlags uint Supplies the resync flags.
Résultat System

ToString() public méthode

Convert the resynchronization state to a string.
public ToString ( ) : string
Résultat string

Property Details

PlayerId public_oe property

The player id of the player.
public int PlayerId
Résultat int

ResyncFlags public_oe property

The resync flags for the request.
public uint ResyncFlags
Résultat uint