r2mods/ilspy_dump/ror2_csproj/UDPSenderUpdate.cs

24 lines
312 B
C#
Raw Permalink Normal View History

2024-10-04 07:26:37 +00:00
using System.Collections;
using UnityEngine;
public class UDPSenderUpdate : MonoBehaviour
{
private void Awake()
{
Object.DontDestroyOnLoad(base.gameObject);
}
private void Start()
{
}
private void Update()
{
}
private IEnumerator EndlessSending()
{
yield return new WaitForEndOfFrame();
}
}