Quote:Originally Posted by 3930K Bool covers that, I think.
Enums are more for thing that cover more than 2, for example, UriKind, Color, MessageBoxImage, etc.
hmm... I see.
I have never use enum. So which one of these styles would you use?
Code:
if(login)
Player.IsOnline = true;
or
Code:
enum PlayerStatus{Offline, Online};
if(login)
Player.Status = PlayerStatus.Online;
Quote:Originally Posted by Ryou-kun True, but a lot of times they aren't much of useful IMO.
Anyway, I have Microsoft XNA and Microsoft Visual Studio C# 2010.
Will that be sufficient or not?
I'm not technically looking to make a...
Quote:Originally Posted by Ryou-kun I'll take your advice. Can I use Source Engine if so how? Do I need every single Valve games like Half life, l4d series, gmod and etc.
You can use the Source Engine. However you can't release a...
Quote:Originally Posted by Ryou-kun I'm looking for a video games programming softwares that is totally free, and I am allowed to program games. I think by programming I mean syntax.
Does anyone have any idea for it?
I have a...
Quote:Originally Posted by tompsonn Indeed.
The best thing is that it is ALONGSIDE Win32 (and for the most part just wraps it anyway) - which is awesome because you can get the best of both worlds if you so require it (and it most...