Skip to content

Instantly share code, notes, and snippets.

View hacktoon's full-sized avatar
🤓
Programming a game

Karl hacktoon

🤓
Programming a game
View GitHub Profile
@hacktoon
hacktoon / 2d-movement-rpg.html
Created March 26, 2012 12:29
Protótipo de RPG 2D tiled
<!DOCTYPE html>
<html>
<head>
<title>RPG 2D tiled</title>
</head>
<body>
<canvas id="game"></canvas>
<script>
@hacktoon
hacktoon / 2d-tiled-scroller.html
Created March 26, 2012 12:32
Protótipo de jogo de plataforma
<!DOCTYPE html>
<html>
<head>
<title>Plataforma</title>
<style>
#scene, #hero {
position: absolute;
}
#scene {
@hacktoon
hacktoon / breakout.html
Created March 26, 2012 14:33
Breakout
<!DOCTYPE html>
<head>
<title>CanvasBreak</title>
<style>
body {
background: #000;
}
h1 {
color: #FFF;
font-size: 25px;