I want to make a card game using C# and i found some APIs that give me access toward cards, but that APIs are for C++ that needed a wrapper. XNA framework have some way to access cards for a card game like cards.dll?

link|improve this question

71% accept rate
1  
Just because you can link into cards.dll doesn't mean that you're supposed to. It's completely unsupported. Go with Neil's answer. – Andrew Russell Mar 28 '11 at 8:35
feedback

3 Answers

Here is an starter kit for a card game using XNA.

Blackjack Starter Kit

link|improve this answer
feedback

You might want to redefine your question. XNA should give you everything you need in terms of accessing the graphics cards for what XNA is. Is there something specific XNA isn't giving you that you'd want to do with native code?

link|improve this answer
2  
Pretty sure he means playing cards, not graphics cards. – Martin Doms Mar 28 '11 at 0:28
feedback

It depends. If you want to make that game for the PC, then you can make use of a C++ unmanaged API dll. But if you want to make that game for either the Xbox 360 or Windows Phone 7, then you won't be able to.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.