Search:

Type: Posts; User: willmer

Search: Search took 0.35 seconds.

  1. Re: Trouble using enum in constructor when creating a class

    I suppose I should read the stickies huh?

    Instead of trying to fix my code. Could you tell me the proper way to create an enum and then use it when creating an object?
    like would this be...
  2. [Solved]Trouble using enum in constructor when creating a class

    I am having trouble getting my enum to work when I try to create a new class and construct it.


    public enum MonsterType{
    FIRE,
    WATER,
    EARTH,
    AIR
    }
    This is my...
  3. Re: Newbie: general question on trying to get a simple Pokemon game to work

    The other thing that didn't make sense was that interfaces appear to be useful when you have objects from two separate classes that might use that interface. My program will have two monster objects...
  4. Re: Newbie: general question on trying to get a simple Pokemon game to work

    So after reading through the interface tutorial stuff I am still confused. So I understand that when you create an interface you do not put any method implementations into it only the signatures. ...
  5. Re: Newbie: general question on trying to get a simple Pokemon game to work

    Thanks for your advice. Like I said, I'm fairly new to programming and still struggle with some of the meta knowledge and understanding how to use multiple classes, interfaces, etc to accomplish my...
  6. Newbie: general question on trying to get a simple Pokemon game to work

    I am writing a game where you have a monster and fight it against others very similar to how pokemon works. I have some experience with C++ and just started learning how to properly do things in...
Results 1 to 6 of 6