Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
56f948a90a |
4 changed files with 16 additions and 7 deletions
9
.editorconfig
Normal file
9
.editorconfig
Normal file
|
@ -0,0 +1,9 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
insert_final_newline = true
|
||||
|
||||
[*.{h,hpp,c,cpp}]
|
||||
indent_style = tab
|
||||
indent_size = 4
|
10
src/main.cpp
10
src/main.cpp
|
@ -228,11 +228,11 @@ void keyUp(unsigned char key, int x, int y) {
|
|||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
glutInit(&argc, argv);
|
||||
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
|
||||
glutInitWindowSize(600, 600);
|
||||
glutInitWindowPosition(glutGet(GLUT_SCREEN_WIDTH) * 0.6, (glutGet(GLUT_SCREEN_HEIGHT) - 600) * 0.5);
|
||||
glutCreateWindow("Pong");
|
||||
glutInit(&argc, argv);
|
||||
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
|
||||
glutInitWindowSize(600, 600);
|
||||
glutInitWindowPosition(glutGet(GLUT_SCREEN_WIDTH) * 0.6, (glutGet(GLUT_SCREEN_HEIGHT) - 600) * 0.5);
|
||||
glutCreateWindow("Pong");
|
||||
glutSetKeyRepeat(GLUT_KEY_REPEAT_OFF);
|
||||
glutKeyboardFunc(keyDown);
|
||||
glutKeyboardUpFunc(keyUp);
|
||||
|
|
Loading…
Add table
Reference in a new issue