17 lines
366 B
C#
17 lines
366 B
C#
using UnityEngine.Scripting;
|
|
|
|
#nullable disable
|
|
[Preserve]
|
|
public class BlockCampfireRebirth : BlockWorkstationRebirth
|
|
{
|
|
public override string GetActivationText(
|
|
WorldBase _world,
|
|
BlockValue _blockValue,
|
|
int _clrIdx,
|
|
Vector3i _blockPos,
|
|
EntityAlive _entityFocusing)
|
|
{
|
|
return Localization.Get("useCampfire");
|
|
}
|
|
}
|