trunk contents moved to root

This commit is contained in:
Jindra Petřík
2014-05-10 20:50:57 +02:00
parent 1b851e66a8
commit 199a4d0c2b
2296 changed files with 0 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
class Enemy implements Moving {
var x:Number;
var tst:Number = 5;
var tst2:Number;
static var stat_tst:Number=6;
static function sfunc(){
trace("hu");
}
// constructor
function Enemy(px:Number) {
var k=57;
k=k*27;
var c=k;
x = px+c;
}
function moveLeft(lx:Number) {
x -= lx;
tst=7;
//hovno="bagr";
trace("moveLeft = " + x);
}
function moveRight(rx:Number) {
x += rx;
trace("moveRight = " + x);
}
function moveUp(uy:Number) {
// leave it empty , dont need it
// but must implement it.
}
function moveDown(dy:Number) {
}
}