Last-Modified: Thu, 23 Jul 2026 20:33:15 GMT Expires: Sun, 20 Jul 2036 20:33:15 GMT Constants.cs « Utils « Tango.Scripting.Editors « Scripting « Visual_Studio « Software - Tango - Twine softwares
aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Utils/Constants.cs
blob: 0344ada8085a4c8958e5c1982709864b19930d11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Tango PMR Generator
// 
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. Do not modify!
// </auto-generated>
//------------------------------------------------------------------------------

syntax = "proto3";

@foreach (var import in Model.Imports)
{
    <div>
        import "@(import)";
    </div>
}

package @(Model.Package);
option java_package = "com.twine.@(Model.Package.ToLower())";

enum @(Model.Name)
{
    @foreach (var prop in Model.Fields)
    {
    <div>
        @(prop.Description != null ? ("//" + prop.Description) : "")
        @(prop.Name) = @(prop.Value);
    </div>
    }
}