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