protected override ActorExDescription Load(string info) { var path = BasePath.Combine(info + FileExtension); using var stream = resourcePool.FindAndOpen(path) ?? throw new System.IO.FileNotFoundException($"Could not find actor: {path}"); return(ActorExDescription.ReadNew(stream)); }