13 lines
248 B
C#
13 lines
248 B
C#
using Rust.UI;
|
|
using UnityEngine;
|
|
|
|
public class ConnectionScreen : SingletonComponent<ConnectionScreen>
|
|
{
|
|
public RustText statusText;
|
|
|
|
public GameObject disconnectButton;
|
|
|
|
public GameObject retryButton;
|
|
|
|
public ServerBrowserInfo browserInfo;
|
|
}
|