mirror of
https://github.com/DerTyp7/defrain-shooter-unity.git
synced 2025-10-29 12:52:07 +01:00
12 lines
171 B
C#
12 lines
171 B
C#
using UnityEngine;
|
|
|
|
public class VariableSaver : MonoBehaviour
|
|
{
|
|
public string username;
|
|
|
|
public void Awake()
|
|
{
|
|
DontDestroyOnLoad(gameObject);
|
|
}
|
|
}
|