rabidus-test/Assets/Scripts/TimeBonus.cs

23 lines
455 B
C#
Raw Normal View History

2023-07-24 16:38:13 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2023-08-15 17:38:54 +03:00
public class TimeBonus : BaseItem
2023-07-24 16:38:13 +03:00
{
[SerializeField]
private int _timeBonus;
private vTimerCounter _timerCounter;
2023-08-22 15:41:12 +03:00
protected override void Awake()
2023-07-24 16:38:13 +03:00
{
2023-08-22 15:41:12 +03:00
base.Awake();
2023-07-24 16:38:13 +03:00
_timerCounter = FindObjectOfType<vTimerCounter>();
}
2023-08-15 17:38:54 +03:00
public override void Interact()
2023-07-24 16:38:13 +03:00
{
2023-08-15 17:38:54 +03:00
base.Interact();
2023-07-24 16:38:13 +03:00
_timerCounter.AddTime(_timeBonus);
}
}