11 lines
183 B
C#
11 lines
183 B
C#
using Godot;
|
|
using System;
|
|
|
|
public partial class AwfullyHotCoffeePot : Tchotchke
|
|
{
|
|
public AwfullyHotCoffeePot() : base()
|
|
{
|
|
_effects.Add(new Caffeinate(this));
|
|
}
|
|
}
|