mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
21 lines
388 B
C#
21 lines
388 B
C#
using System;
|
|
using RusticiSoftware.Translator;
|
|
using OldT = RusticiSoftware.Translator.TypeRepTemplate;
|
|
using NewT = RusticiSoftware.Translator.CLR.TypeRepTemplate;
|
|
|
|
namespace UpdateTxFiles
|
|
{
|
|
public class UpdateTranslationTemplate {
|
|
|
|
public UpdateTranslationTemplate ()
|
|
{
|
|
}
|
|
public NewT upgrade (OldT inTemplate)
|
|
{
|
|
throw new System.NotImplementedException ();
|
|
}
|
|
|
|
}
|
|
}
|
|
|