What To Do When your Bored

This Page Is For Bored People.STOP BEING BORED!Learn How To IndulgeYourself!But Here Is My Master Plan.We Are Going To Make A Huge Awesome Program!First,I Come Up With The Idea,(I'll Help Also)Then You Guys Add on To It By As many Lines As You Want,Then Just Pass It On.If You Spot Somebody's Code On Here Doesn't Use The Correct Syntax Or Messes Up Our Code,Message Me,Techy24.Here Is What The Code Is...A Huge Game!Biggest Contributors Will Win A Prize!Before Replying,Make Sure Your Syntax Is Correct And Read All The Others Posts!Happy Coding!(I Will Be The Third Contributer In Line)
closed account (z05DSL3A)
I think that there is something wrong with your space bar, it seems to not work after you use punctuation.
The Mighty Wall of Text.
I'll get you started Techy24:
1
2
3
int main() {
   return 0;
}


Enjoy =D
Adding and changing syntax while I can:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <windows.h>
 
class cAPP
{
  //Components here:
  // component1 (gui?)
  // component2 (other inteface devices?)
  // component3 (physics model?)
  // component4 (enviornment?)
  // component5 (player?)

public:
  WAITORTIMERCALLBACKFUNC tick;
} TheApp;

int main() 
{
  // 8ms iteration rate.
  PHANDLE phNewTimer = NULL;
  BOOL error = 
    CreateTimerQueueTimer(phNewTimer,  NULL, TheApp.tick, (PVOID)NULL, 0, 8, WT_EXECUTEDEFAULT);

  if (error) return 1;

  Sleep(INFINITE);
  return 0;
}
Last edited on
Topic archived. No new replies allowed.