Made the fight world completable #33
Merged
kziolkowski
merged 3 commits from feature/night_to_day into develop 2 months ago
@ -0,0 +1,16 @@
|
||||
using Godot;
|
||||
using System;
|
||||
using Babushka.scripts.CSharp.Common.Fight;
|
||||
|
||||
public partial class NightStarter : Node
|
||||
{
|
||||
[Export] private int _sceneIndexToLoad;
|
||||
|
||||
[Signal] public delegate void LoadSceneEventHandler(int index);
|
||||
|
||||
public void StartNight()
|
||||
{
|
||||
FightWorld.Instance.ResetFightWorld();
|
||||
EmitSignalLoadScene(_sceneIndexToLoad);
|
||||
}
|
||||
}
|
||||
@ -0,0 +1 @@
|
||||
uid://puw74w6lmcvl
|
||||
Loading…
Reference in new issue