riversong code showcase
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
public struct SelectedBuildingChangedSignal
|
||||
{
|
||||
public Building OldSelection;
|
||||
|
||||
public Building NewSelection;
|
||||
|
||||
public SelectedBuildingChangedSignal(Building oldSelection, Building newSelection)
|
||||
{
|
||||
OldSelection = oldSelection;
|
||||
NewSelection = newSelection;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user