15 lines
381 B
C#
15 lines
381 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public struct SelectedBuildingChangedSignal
|
|
{
|
|
public Building OldSelection;
|
|
|
|
public Building NewSelection;
|
|
|
|
public SelectedBuildingChangedSignal(Building oldSelection, Building newSelection)
|
|
{
|
|
OldSelection = oldSelection;
|
|
NewSelection = newSelection;
|
|
}
|
|
}
|
|
} |