Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified DRT for Group Project.docx
Binary file not shown.
4 changes: 2 additions & 2 deletions GBoard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ void GBoard::displayBoard(Critter*** board){
}

/***********************************************************************************
* * This oneLotate() function describes one day(turn).
* * This oneRotate() function describes one day(turn).
* * First, it checks if a cell is empty or not. If not, a critter is checked
* * moved = false through the whole board. Next, it checks if there is
* * a doodle bug in a cell through the whole board. if so. it calls move().
Expand All @@ -160,7 +160,7 @@ void GBoard::displayBoard(Critter*** board){
* * @param board
************************************************************************************/

void GBoard::oneLotate(Critter*** board)
void GBoard::oneRotate(Critter*** board)
{
int i,j;

Expand Down
2 changes: 1 addition & 1 deletion GBoard.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class GBoard {

void fillBoard(Critter*** b);
void displayBoard(Critter*** b);
void oneLotate(Critter*** b);
void oneRotate(Critter*** b);
void deleteBoard(Critter*** b);

};
Expand Down
Binary file removed Group Project CS 162 ERD (1).png
Binary file not shown.
Binary file added Group Project CS 162 ERD (2).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# MyWork-for-Critter-P--cs162
This is originally class group work, and I just doing this while waiting other's work done to do debugging or checking. Then, thankfully it is working well.
This is For the Group Project CS 162. Predator prey simulation game. Predator is Doodle Bug and prey is Ant.