12 lines
236 B
C#
12 lines
236 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct DemoCompletedSignal
|
|
{
|
|
public float GameTime;
|
|
|
|
public DemoCompletedSignal(float gameTime)
|
|
{
|
|
GameTime = gameTime;
|
|
}
|
|
}
|
|
} |