2015-11-25 22:24:41 +01:00
|
|
|
<?php
|
2016-06-19 23:09:59 +02:00
|
|
|
#- BEGIN LICENSE BLOCK ---------------------------------------
|
|
|
|
#
|
|
|
|
# This file is part of botsArena.
|
|
|
|
#
|
|
|
|
# Copyright (C) Gnieark et contributeurs
|
|
|
|
# Licensed under the GPL version 3.0 license.
|
|
|
|
# See LICENSE file or
|
|
|
|
# http://www.gnu.org/licenses/gpl-3.0-standalone.html
|
|
|
|
#
|
|
|
|
# -- END LICENSE BLOCK -----------------------------------------
|
|
|
|
|
2015-11-25 22:32:58 +01:00
|
|
|
$arenas=array(
|
2015-11-25 22:24:41 +01:00
|
|
|
array(
|
|
|
|
'id' => "tictactoe",
|
2015-11-25 22:32:58 +01:00
|
|
|
'url' => "/tictactoe",
|
2015-11-28 14:41:29 +01:00
|
|
|
'title' => "Tic Tac Toe",
|
2015-12-08 23:20:40 +01:00
|
|
|
'metaDescription' => 'Affrontements de bots au TicTacToe, morpion',
|
2015-11-28 18:02:49 +01:00
|
|
|
'jsFile'=> "js.js",
|
|
|
|
'cssFile'=> "style.css"
|
2015-11-25 22:32:58 +01:00
|
|
|
),
|
|
|
|
array(
|
|
|
|
'id' => "Battleship",
|
2015-11-27 22:43:14 +01:00
|
|
|
'url' => "/Battleship",
|
2015-12-08 23:20:40 +01:00
|
|
|
'title' => "bataille Navale",
|
2015-12-11 09:25:36 +01:00
|
|
|
'metaDescription' => 'Affrontements de bots à la battaille navale',
|
|
|
|
'jsFile'=> "js.js",
|
|
|
|
'cssFile'=> "style.css"
|
2016-05-09 21:36:41 +02:00
|
|
|
),
|
|
|
|
array(
|
|
|
|
'id' => "connectFour",
|
|
|
|
'url' => "/connectFour",
|
|
|
|
'title' => "Puissance 4",
|
|
|
|
'metaDescription' => 'Affrontements de bots puissance 4',
|
|
|
|
'jsFile'=> "js.js",
|
|
|
|
'cssFile'=> "style.css"
|
2015-11-25 22:24:41 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
);
|