Metadata-Version: 2.1
Name: sam-games
Version: 0.0.10
Summary: python based games using turtle
Author-email: Byri Neeraj S <byrineeraj@gmail.com>
Project-URL: Homepage, https://github.com/pypa/sampleproject
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: License.txt

## Effective-octo
- This is a simple, educative, open sourde code 
- The package contains 3 modules of simple game codes
- After importing the module 
- The games can be invoked by calling the main function .main() in them 
- no arguments are required 

# Tic-Tac-Toe
- Tic-tac-toe, noughts and crosses, or Xs and Os is a paper-and-pencil game for two players.

   ![Tic-T ac-Toe](https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTclVBW3ABcNJEeq56goEC6NckO4NBTnQ7HNelroiGqj0KQgL7diFryvF3bgt19v7T12Qw&usqp=CAU) 

- who take turns marking the spaces in a three-by-three grid with X or O.
- Playes take turns and the position to mark their symbol is given as matrix input(row,col)
- The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row is the winner.

# Rock-Paper-Scissor
- Rock paper scissors is a hand game originating in China, played between two people, in which each player simultaneously forms one of three shapes
- Here shapes are choosen as inputs of int format and the opponent (your pc) chooes its choice in a random manner
- These shapes are "rock", "paper", and "scissors". A simultaneous, zero-sum game, it has three possible outcomes: a draw, a win or a loss.

   ![Rock-Paper-Scissor](https://img.freepik.com/premium-vector/hands-playing-rock-paper-scissors-game-flat-design-style-vector-illustration_540284-598.jpg?w=380) 

# Snake
- This module requires another package called 'freegames'. Make sure its installed before calling this module. 
- Snake is a sub-genre of action video games where the player maneuvers the end of a growing line. 
- The player must keep the snake from colliding with both other obstacles and itself, which gets harder as the snake lengthens.

   ![Snake](https://noobtuts.com/content/python/snake-game/snake.png)

github url -- https://github.com/2028-design/effective-octo
## License
MIT
