mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 23:48:15 +03:00
10 lines
242 B
C#
10 lines
242 B
C#
namespace Content.Server.Punpun;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class PunpunComponent : Component
|
|
{
|
|
/// How many rounds Punpun will be around for before disappearing with a note
|
|
[DataField]
|
|
public int Lifetime = 14;
|
|
}
|