12 lines
170 B
C#
12 lines
170 B
C#
using UnityEngine;
|
|
|
|
public class ProfileHack : MonoBehaviour
|
|
{
|
|
public ProfileCreation profileCreation;
|
|
|
|
private void Awake()
|
|
{
|
|
Object.Destroy(base.gameObject);
|
|
}
|
|
}
|