using System.Collections; using System.Collections.Generic; using UnityEngine; public class LevelupWarning : MonoBehaviour { public void Warn(float value) { Debug.Log("Knowledge Level Increased!\nCurrent Level: " + value); } }