12 lines
306 B
C#
12 lines
306 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct ConstructionCompletedSignal
|
|
{
|
|
public ConstructionSite ConstructionSite;
|
|
|
|
public ConstructionCompletedSignal(ConstructionSite constructionSite)
|
|
{
|
|
ConstructionSite = constructionSite;
|
|
}
|
|
}
|
|
} |