mirror of
https://github.com/psenough/pouet.net.git
synced 2025-01-16 20:58:27 +01:00
35 lines
1.2 KiB
PHP
35 lines
1.2 KiB
PHP
<?
|
|
$awardscat = array();
|
|
|
|
$sceneorgyear = null;
|
|
//$sceneorgyear = 2011;
|
|
|
|
$awardscat["2010"] = array();
|
|
$awardscat["2010"][1] = "best demo";
|
|
$awardscat["2010"][2] = "best 64k";
|
|
$awardscat["2010"][3] = "best 4k";
|
|
$awardscat["2010"][4] = "best animation";
|
|
$awardscat["2010"][5] = "best demo on an oldschool platform";
|
|
$awardscat["2010"][6] = "best effects";
|
|
$awardscat["2010"][7] = "best graphics";
|
|
$awardscat["2010"][8] = "best soundtrack";
|
|
$awardscat["2010"][9] = "best direction";
|
|
$awardscat["2010"][10] = "most original concept";
|
|
$awardscat["2010"][11] = "breakthrough performance";
|
|
$awardscat["2010"][12] = "best technical achievement";
|
|
|
|
$awardscat["2011"] = array();
|
|
$awardscat["2011"][1] = "best demo";
|
|
$awardscat["2011"][2] = "best 64k";
|
|
$awardscat["2011"][3] = "best 4k";
|
|
//$awardscat["2011"][4] = "best animation";
|
|
$awardscat["2011"][5] = "best demo on an oldschool platform";
|
|
$awardscat["2011"][6] = "best effects";
|
|
$awardscat["2011"][7] = "best graphics";
|
|
$awardscat["2011"][8] = "best soundtrack";
|
|
$awardscat["2011"][9] = "best direction";
|
|
$awardscat["2011"][10] = "most original concept";
|
|
$awardscat["2011"][11] = "breakthrough performance";
|
|
$awardscat["2011"][12] = "best technical achievement";
|
|
?>
|