blob: d4b682f4b8beb8d30ace81a8b8a7f7e419a5fe3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
{% for header in headers %}#include "{{ header }}"{% endfor %}
{% for instance in instances %}
static {{ instance.type }} {{ instance.name }}{
{% for arg in instance.args %}
{{ arg | hex }},
{% endfor %}
};
{% endfor %}
|