12 lines
251 B
C#
12 lines
251 B
C#
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);
|
|
}
|
|
}
|