Add wagon inserter options to multistation
This commit is contained in:
parent
7638081f26
commit
7ef42e5202
6 changed files with 89 additions and 33 deletions
|
|
@ -1,4 +1,5 @@
|
|||
use crate::{BlueprintEntity, BlueprintPosition};
|
||||
use clap::ValueEnum;
|
||||
use factorio_core::{
|
||||
aabb::AABB,
|
||||
beltoptions::Beltspeed,
|
||||
|
|
@ -24,7 +25,7 @@ pub enum UndergroundType {
|
|||
Output,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, ValueEnum)]
|
||||
pub enum InserterType {
|
||||
Burner,
|
||||
Normal,
|
||||
|
|
@ -82,7 +83,7 @@ impl ElectricPoleType {
|
|||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, ValueEnum)]
|
||||
pub enum Quality {
|
||||
Normal,
|
||||
Uncommon,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue