mlcg 0.0.1

Mindustry Logic Code Generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::eval::Eval;
use crate::String;

pub mod building;
pub mod config;
pub mod number;
pub mod unit;

pub trait Type: Eval<String> {
    fn from_name(name: crate::String) -> Self;
}