mirror of
				https://github.com/DerTyp7/defrain-shooter-unity.git
				synced 2025-10-31 13:37:08 +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);
 | |
|     }
 | |
| }
 | 
