Skip to content

Instantly share code, notes, and snippets.

@deviceplususer
Created August 27, 2019 10:10
Embed
What would you like to do?
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