Go to file
Pavel Shevaev 65e10d83b4 Adding basice README 2022-12-07 17:25:44 +03:00
src Gradually adding support for all features 2022-12-07 17:13:10 +03:00
tpl Gradually adding support for all features 2022-12-07 17:13:10 +03:00
.gitignore Minor tweaks 2022-12-07 17:19:24 +03:00
README.md Adding basice README 2022-12-07 17:25:44 +03:00
composer.json Minor tweaks 2022-12-07 17:19:24 +03:00

README.md

This package is used for code generation of C# meta structs using Twig templates

Usage example:

$twig = \metagen_cs\get_twig();
file_put_contents('bundle.cs', 
  $twig->render("codegen_bundle.twig", 
    [
     'namespace' => 'BitGames.Autogen',
     'meta' => get_meta()
    ]
  )
);