Browse Source

Initial checkin

master
Naveen Radhakrishnan 5 years ago
parent
commit
d66786fcd9
2 changed files with 64 additions and 0 deletions
  1. +56
    -0
      ld40.html
  2. +8
    -0
      ld40js.hxml

+ 56
- 0
ld40.html View File

@@ -0,0 +1,56 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<meta property="og:image" content="http://ncannasse.fr/file/ld40/screen.png"/>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'/>
<title>Taffle Game</title>
</head>
<body style="background-color : #F9F7F7; color : #eef">

<style type="text/css">
a {
color : #844;
text-decoration : none;
}
p {
color : #888;
font-family: 'Open Sans', sans-serif;
}
</style>

<center>
<div style="position : relative; width : 832px">
<canvas id="webgl" style="width:832px;height:832px"></canvas>
</div>

<p>
<b>Arrows</b> : Move / <b>Space</b> : Rewind
-
<i>Game created for LudumDare #40 in 48 hours by <a href="http://twitter.com/ncannasse">@ncannasse</a></i>
</p>
<p>
Sources : <a href="http://github.com/ncannasse/ld40">Github</a> | Built with <a href="http://haxe.org">Haxe</a> | Rate <a href="https://ldjam.com/events/ludum-dare/40/jonathan-the-sorcerer">on this page</a>
</p>

</center>

<script type="text/javascript" src="ld40.js"></script>

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34409935-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>

</body>
</html>



+ 8
- 0
ld40js.hxml View File

@@ -0,0 +1,8 @@
-lib heaps
-lib castle
-cp src
-js ld40.js
-main Game
-D windowSize=832x832
-dce full
-D release

Loading…
Cancel
Save