1
0
mirror of https://github.com/ynerant/Level-Editor.git synced 2025-06-21 09:58:24 +02:00

Ajouté code pour l'éditeur (pas encore au point)

This commit is contained in:
galaxyoyo
2015-01-07 19:49:09 +01:00
parent 86bd11fc16
commit 67e2860057
3 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,25 @@
package galaxyoyo.unknown.editor;
import java.util.ArrayList;
import java.util.List;
public class Editor
{
public static Byte[] toBytes(int width, int height)
{
List<Byte> bytes = new ArrayList<Byte>();
for (int x = 1; x < width; x += 16)
{
for (int y = 1; y < height; y += 16)
{
bytes.add((byte) 0);
}
bytes.add(Byte.MIN_VALUE);
}
bytes.remove(bytes.lastIndexOf(Byte.MIN_VALUE));
return bytes.toArray(new Byte[0]);
}
}