22 lines
443 B
C
22 lines
443 B
C
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/cppFiles/file.h to edit this template
|
|
*/
|
|
|
|
/*
|
|
* File: rockPaperScissors.h
|
|
* Author: caleb
|
|
*
|
|
* Created on March 4, 2024, 7:31 PM
|
|
*/
|
|
|
|
#ifndef ROCKPAPERSCISSORS_H
|
|
#define ROCKPAPERSCISSORS_H
|
|
|
|
char computerPlay();
|
|
char humanPlay();
|
|
void gameLoop();
|
|
|
|
#endif /* ROCKPAPERSCISSORS_H */
|
|
|