tradaf 0.1.1

Tranduit Data Format: Translate serialized data from one format to another.
Documentation
Scene( // class name is optional
	materials: { // this is a map
		"metal": (
			reflectivity: 1.0,
		),
		"plastic": (
			reflectivity: 0.5,
		),
	},
	entities: [ // this is an array
		(
			name: "hero",
			material: "metal",
		),
		(
			name: "monster",
			material: "plastic",
		),
	],
)