Tagged Questions
4
votes
3answers
626 views
Help with C# program design implementation: multiple array of lists or a better way?
I'm creating a 2D tile-based RPG in XNA and am in the initial design phase. I was thinking of how I want my tile engine to work and came up with a rough sketch. Basically I want a grid of tiles, but ...
1
vote
4answers
86 views
EDITED: How should I separate closely related programs in C#? (user client, admin, and common class library)
I have a suite of programs that are related. One is a user client, one is an admin program, and another is a set of library classes that reside in a Class library.
How should I separate the projects?
...