mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-22 14:33:51 +00:00
29 lines
341 B
Plaintext
29 lines
341 B
Plaintext
|
|
||
|
component Xpos
|
||
|
x: 0..255
|
||
|
end
|
||
|
component Player
|
||
|
end
|
||
|
component Enemy
|
||
|
end
|
||
|
|
||
|
scope Main
|
||
|
entity foo [Xpos]
|
||
|
end
|
||
|
entity p [Xpos,Player]
|
||
|
init x = 50
|
||
|
end
|
||
|
entity e1 [Xpos,Enemy]
|
||
|
init x = 100
|
||
|
end
|
||
|
entity e2 [Xpos,Enemy]
|
||
|
init x = 150
|
||
|
end
|
||
|
system move
|
||
|
on start do foreach [Enemy]
|
||
|
---
|
||
|
lda {{<x}}
|
||
|
---
|
||
|
end
|
||
|
end
|