someone give me game codez pls

Pages: 1234
closed account (j6AqM4Gy)
Haha, I remember spoon licker, though thats not me.
Are we having fun yet? Are you making your game yet?
closed account (j6AqM4Gy)
Yes actually. Heres my code so far:

1
2
3
4
5
6
7
//#include <Game.hpp> //will eventually make that

int main()
{
    return 0;
}


I can't figure out how to make stuff work. Please show me what I need to add, I already got a solid start...
Where will that header file be relative to your project's source files?


edit: that code is hauntingly familiar. In fact, I'm sure it's been posted verbatim before.
Last edited on
Gamecodezs, may I suggest some radical design change?

1
2
3
4
5
6
7
//#include <Game.hpp> //will eventually make that

int main()
{
    while(Game_execute()); // Game_execute does all the stuff and returns 1 if it should continue, 0 otherwise
    return 0;
}
@gamecodezs
Why don't you have using namespace std ?
Last edited on
I noticed the lack of that, too, so I added that to my Game.hpp.
closed account (j6AqM4Gy)
I don't have std's... I mean I'm not using the standard library. I will create my own implementation of it with a cross platform assembly language I'm making. It's called Cross-Platform Assembly. me wuld lik u 2 pst teh codz 4 dat here 2.
Top notch!
I have a feeling he doesn't really want to code anything. :(
But you have to give it to him for his ability to type something so funny. Perhaps coding is not his forte but typing sure is :)
This thread has made me so much happier ^^
You're welcome.
...a cross platform assembly language I'm making

Why are you reinventing C? ;_;

-Albatross
Sometimes, I dream about cheese.
Why are you reinventing C?

... and not reinvent C++ instead?

Sometimes, I dream about cheese.

Ever noticed how it's alive?
closed account (j6AqM4Gy)
I have no friends so i hope we can be friends.
friend class gamecodezs;

There. Now you can access my private members, which I'm pretty sure was your planned retort.
Your code is wrong. It should be: virtual friend class gamecodez;
You know, because, the internet.
Last edited on
closed account (j6AqM4Gy)
xander337 wrote:
You know, because, the internet.


Well... not to be a creeper, but I know where you live. So technically we could go farther than just the internet ;) I'm thinking something that ends in x... I'm thinking Xbox
Pages: 1234