Skip to content

Instantly share code, notes, and snippets.

@deviceplususer
Created August 27, 2019 10:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deviceplususer/ba41a659bb681a2723d8dd7510d00a60 to your computer and use it in GitHub Desktop.
Save deviceplususer/ba41a659bb681a2723d8dd7510d00a60 to your computer and use it in GitHub Desktop.
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