14 lines
285 B
C#
14 lines
285 B
C#
using UnityEngine;
|
|
using NaughtyAttributes;
|
|
|
|
public class InfoBoxes : MonoBehaviour
|
|
{
|
|
[InfoBox("Normal", InfoBoxType.Normal)]
|
|
public int int1;
|
|
|
|
[InfoBox("Warning", InfoBoxType.Warning)]
|
|
public int int2;
|
|
|
|
[InfoBox("Error", InfoBoxType.Error)]
|
|
public int int3;
|
|
}
|