templates property

List<Template> templates
final

Implementation

static final templates = [
  Template(
    key: 'simple',
    name: 'Simple',
    description: 'The emptiest possible Flame project. '
        'Just the bare minimum to get you up and running.',
    bundle: simpleBundle,
  ),
  Template(
    key: 'basics',
    name: 'Basics',
    description: 'The basic structure that most games will require. '
        'No boilerplate required, but no extra fluff.',
    bundle: basicsBundle,
  ),
  Template(
    key: 'example',
    name: 'Example',
    description: 'An actual complete, working game example. '
        "Extra code that you won't need but will teach you how to wire the "
        'most important pieces. ',
    bundle: exampleBundle,
  ),
];