Files
hotdesking/Gameplay/Tchotchkes/AwfullyHotCoffeePot.cs

11 lines
183 B
C#

using Godot;
using System;
public partial class AwfullyHotCoffeePot : Tchotchke
{
public AwfullyHotCoffeePot() : base()
{
_effects.Add(new Caffeinate(this));
}
}