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.
 
 
 
 
 
 

17 lines
376 B

using Leopotam.Ecs;
using UnityEngine;
using UnityEngine.SceneManagement;
namespace Asset_Cleaner {
class SelectionChanged : IEcsAutoReset {
public Object Target;
public Scene Scene;
public FindModeEnum From;
public void Reset() {
Target = default;
Scene = default;
From = default;
}
}
}