You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
493 B

using Leopotam.Ecs;
using UnityEngine.SceneManagement;
namespace Asset_Cleaner {
class SceneDetails : IEcsAutoReset {
public string Path;
public Scene Scene;
public bool SearchRequested;
public bool SearchDone;
public bool WasOpened;
public void Reset() {
Path = default;
Scene = default;
SearchRequested = default;
SearchDone = default;
WasOpened = default;
}
}
}