Skip to content

Instantly share code, notes, and snippets.

@highonskooma
highonskooma / index.html
Created March 11, 2024 16:23
Load data from an external GeoJSON file
<div id="left" class="sidebar flex-center left collapsed">
<div class="sidebar-content rounded-rect flex-center">
<div id="filters">
<h2>Categories</h2>
<p>Number of locations: <span id="locations-count"></span></p>
<label class="cave-structures"><input type="checkbox" name="category" value="Cave Structures" checked > Cave Structures</label>
@highonskooma
highonskooma / src_Avançado.java
Created March 20, 2021 20:34
Superclasse Jogador
public class Avançado extends Jogador {
//construtor por omissão
public Avançado(){
super();
}
//construtor parametrizado
public Avançado(String nome,boolean titular,int vel,int res,
int des,int imp,int cab,int rem,int passe){
super(nome,titular,vel,res,des,imp,cab,rem,passe);