示例#1
0
 public static Duel Create(uint seed)
 {
     MtRandom random = new MtRandom();
     random.Reset(seed);
     IntPtr pDuel = Api.create_duel(random.Rand());
     return Create(pDuel);
 }
示例#2
0
        public static Duel Create(uint seed)
        {
            MtRandom random = new MtRandom();

            random.Reset(seed);
            IntPtr pDuel = Api.create_duel(random.Rand());

            return(Create(pDuel));
        }