IScriptFormatterContext.cs 284 B

1234567891011
  1. using System;
  2. namespace FF8
  3. {
  4. public interface IScriptFormatterContext
  5. {
  6. void GetObjectScriptNamesById(Int32 id, out String objectName, out String scriptName);
  7. String GetObjectNameByIndex(Int32 index);
  8. String GetMessage(Int32 messageIndex);
  9. }
  10. }