Exemple #1
0
 static PlayCard.Card ReadCard(byte[] id)
 {
     byte[] data = NuIO.GetStorageWithKeyPath("c", Op.Bytes2String(id));
     return(Bytes2Card(data));
 }
Exemple #2
0
 static byte SaveCard(PlayCard.Card card)
 {
     return(NuIO.SetStorageWithKeyPath(Card2Bytes(card), "c", Op.Bytes2String(card.id)));
 }