Config.txt 259 B

12345678910111213141516171819
  1. #if UNITY_2017_1_OR_NEWER
  2. using Mono.Data.Sqlite;
  3. #else
  4. using Microsoft.Data.Sqlite;
  5. #endif
  6. namespace GFGGame
  7. {
  8. public class {CfgName} : ICfg
  9. {
  10. {variable declaration}
  11. public void setData(SqliteDataReader reader)
  12. {
  13. {variable assignment}
  14. }
  15. }
  16. }