Search:

Type: Posts; User: ajs15822

Search: Search took 0.00 seconds.

  1. Replies
    2
    Views
    1,080

    You've got three problems, first off you mistyped...

    You've got three problems, first off you mistyped the equality operator:

    This:

    if ( count = 5 ) // if count is 5,

    Should be "==" for comparing two values:

    if ( count == 5 ) // if count is...
  2. Thread: C++ Rookie.

    by ajs15822
    Replies
    3
    Views
    1,178

    I'd recommend checking out "Thinking in C++"--...

    I'd recommend checking out "Thinking in C++"-- it's a great introduction to the language and is available free online here.

    Concerning the most recommended learning path-- the very best way is to...
  3. Replies
    3
    Views
    1,765

    There's actually several good reasons to embed a...

    There's actually several good reasons to embed a browser in a game-- a couple off the top of my head:

    You could use it to power your GUI via HTML/JS.
    You could use it to embed mini-games or...
  4. I know this is probably overkill but I wrote a...

    I know this is probably overkill but I wrote a little utility code a couple years ago that splits up an input string into a series of tokens (output as a vector of strings). It might be helpful to...
Results 1 to 4 of 4