updated README
This commit is contained in:
parent
928b603ba2
commit
416d70fbed
11
README.md
11
README.md
@ -1,2 +1,13 @@
|
||||
# Game_of_Life
|
||||
|
||||
Proof of concept Conway's Game of Life.
|
||||
|
||||
# Todo
|
||||
+ load() doesnt work
|
||||
+ save() can segfault somehow; dunno how to recreate the bug tho
|
||||
|
||||
# Notes
|
||||
+ resizing the window will lead to either stripping balls or (more likely) a crash
|
||||
+ if one loads a fauna that was saved under different screen size
|
||||
everything is gonna be offset; however i hardly care
|
||||
+ an insanely sized screen will cause int overflows and abnormal behaviour
|
||||
|
11
src/main.cpp
11
src/main.cpp
@ -13,17 +13,6 @@ bool running = false;
|
||||
unsigned int std_height = 0;
|
||||
unsigned int std_width = 0;
|
||||
|
||||
/*--------------------------------------------Todos------------------------------------------------\\
|
||||
| >load() doesnt work
|
||||
| >save() can segfault somehow; dunno how to recreate the bug tho
|
||||
\\-------------------------------------------------------------------------------------------------*/
|
||||
|
||||
/*--------------------------------------------Notes------------------------------------------------\\
|
||||
| >resizing the window will lead to either stripping balls or (more likely) a crash
|
||||
| >if one loads a fauna that was saved under different screen size
|
||||
| everything is gonna be offset; however i hardly care
|
||||
| >an insanely sized screen will cause int overflows and abnormal behaviour
|
||||
\\-------------------------------------------------------------------------------------------------*/
|
||||
|
||||
signed main(){
|
||||
//init
|
||||
|
Loading…
x
Reference in New Issue
Block a user