cao-lang 0.1.67

The back-end of cao-lang, a node based visual scripting language
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::{Card, NameSpace};
use crate::VarName;

/// Cao-lang functions
#[derive(Debug, Clone, Default)]
pub struct CompiledLane {
    pub name: String,
    pub namespace: NameSpace,
    pub arguments: Vec<VarName>,
    pub cards: Vec<Card>,
}