Example #1
0
 /// <summary>
 /// creates a TMX Tiled Map with a TMX file.
 /// </summary>
 public static CCTMXTiledMap Create(string tmxFile)
 {
     var pRet = new CCTMXTiledMap();
     pRet.InitWithTmxFile(tmxFile);
     return pRet;
 }