Factory.Start C# (CSharp) Method

Start() private method

private Start ( ) : void
return void
    void Start()
    {
        b = GetComponent <Building> ();
    }

Usage Example

示例#1
0
        async Task Run(ClientAndServerParameters parameters)
        {
            if (Configuration.EnableDebugging)
            {
                parameters.EnableDebugging = true;
            }
            var connection = await Factory.Start(parameters);

            connection.Dispose();
        }
All Usage Examples Of Factory::Start