mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-26 00:45:20 +00:00
12 lines
214 B
C#
12 lines
214 B
C#
namespace Sandbox.Components
|
|
{
|
|
public class Expiry
|
|
{
|
|
public Expiry(float timeRemaining)
|
|
{
|
|
TimeRemaining = timeRemaining;
|
|
}
|
|
|
|
public float TimeRemaining;
|
|
}
|
|
} |