1// This is free and unencumbered software released into the public domain. 2 3#[derive(Clone, Debug)] 4pub struct SystemBuilder {} 5 6impl SystemBuilder { 7 pub fn new() -> Self { 8 Self {} 9 } 10}