Server.Network.SeasonChange.Instantiate C# (CSharp) Méthode

Instantiate() public static méthode

public static Instantiate ( int season ) : SeasonChange
season int
Résultat SeasonChange
        public static SeasonChange Instantiate( int season )
        {
            return Instantiate( season, true );
        }

Same methods

SeasonChange::Instantiate ( int season, bool playSound ) : SeasonChange

Usage Example

Exemple #1
0
 public static SeasonChange Instantiate(int season)
 {
     return(SeasonChange.Instantiate(season, true));
 }