12345678910111213141516171819 |
- #if UNITY_2017_1_OR_NEWER
- using Mono.Data.Sqlite;
- #else
- using Microsoft.Data.Sqlite;
- #endif
- namespace GFGGame
- {
- public class {CfgName} : ICfg
- {
- {variable declaration}
- public void setData(SqliteDataReader reader)
- {
- {variable assignment}
- }
-
- }
- }
|