This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… | |
int grassMatrix[WIDTH][HEIGHT];//草の育成を保持する2次元配列 | |
… | |
int rndX = random(WIDTH); | |
int rndY = random(HEIGHT); | |
grassMatrix[rndX][rndY] += random(GRASS_GROWTH_POTENTIAL + 1); //ランダムな場所の草が成長する | |
… |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment