This commit is contained in:
Kylin_on_Mac 2022-04-29 13:14:05 +08:00
parent d5a071ed32
commit 807f7b5c9d
3 changed files with 2 additions and 13 deletions

View File

@ -1,7 +1,7 @@
# **Easy Game**
[comment]: <> (![python]&#40;https://img.shields.io/pypi/pyversions/pygame&#41;)
![pygame](https://img.shields.io/badge/release-1.1.1-red.svg)
![pygame](https://img.shields.io/badge/release-2.0.0beta-red.svg)
[![Python 3.9](https://img.shields.io/badge/python-3.9-blue.svg)](https://www.python.org/downloads/release/python-390/)
[![MLGame](https://img.shields.io/badge/MLGame-9.5.1-<COLOR>.svg)](https://github.com/PAIA-Playful-AI-Arena/MLGame)

View File

@ -1,6 +1,6 @@
{
"game_name": "easy_game",
"version": "2.0.0",
"version": "2.0.0-beta",
"url": "None",
"game_params": [
{

View File

@ -175,14 +175,3 @@ class EasyGame(PaiaGame):
food = Food(self.foods)
pass
@staticmethod
def ai_clients():
"""
let MLGame know how to parse your ai,
you can also use this names to get different cmd and send different data to each ai client
"""
return [
{"name": "1P",
},
]