view index.html @ 192:0dec83e42d90

Mark "C64 no limit" mode buggy.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 23 Aug 2018 17:27:50 +0300
parents 8a9a9fcc02f7
children d67a79d6e11c
line wrap: on
line source

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Multipaint.JS</title>
  <script src="processing.js"></script>
  <script src="mpui.js"></script>
</head>
<body>
<canvas id="mpCanvas"></canvas>
<div id="mpUI"></div>
<div id="mpNote"></div>
<script>

function mpRunSketch(canvas)
{
  Processing.loadSketchFromSources(canvas, mpSources);
}

mpStart();

</script>
</body>
</html>