Removed itype mentions

This commit is contained in:
wrenge 2023-04-18 14:43:26 +03:00
parent 2c03071ba6
commit 6e8f59cbe8
1 changed files with 0 additions and 14 deletions

View File

@ -98,10 +98,6 @@ public {{_self.struct_type(o)}} {{o.name}} {{_self.base_struct_class(o)}}
{%- if has_token(o, 'bitfields') ~%}
{{_self.bitmask_helpers(o)}}
{%- endif -%}
{%- if has_token(o, 'bhl_bind') ~%}
{{_self.get_itype(o)}}
{%- endif -%}
{%- if has_token(o, 'id') ~%}
public ulong getPrimaryId()
@ -173,7 +169,6 @@ ResetFieldMask();
{%- else -%}
: {{o.parent ? o.parent.name : 'BaseMetaStruct'}}
{{- has_token(o, 'cloneable') and not o.parent ? ', IMetaCloneable' -}}
{{- has_token(o, 'bhl_bind') and not o.parent ? ', bhl.ITyped' -}}
{%- endif -%}
{%- for ai in get_accessor_interfaces(o) -%}
, {{ai.interfacename}}
@ -282,15 +277,6 @@ base.syncFields(ctx);
{%- endmacro -%}
{% macro get_itype(o) %}
public {{_self.virtual(o)}} bhl.IType GetIType()
{
return bhl.BHL_Types.Type_{{o.name}};
}
{%- endmacro -%}
{% macro decl_enum(o) %}
{{_self.attributes(o)}}
public enum {{o.name}}