1

import code

This commit is contained in:
2024-08-26 22:35:42 +03:00
commit fd45f6aa74
86 changed files with 5578 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.mojang.ld22.entity;
import com.mojang.ld22.gfx.Color;
public class Lantern extends Furniture {
public Lantern() {
super("Lantern");
col = Color.get(-1, 000, 111, 555);
sprite = 5;
xr = 3;
yr = 2;
}
public int getLightRadius() {
return 8;
}
}