Skip to content
Snippets Groups Projects
Select Git revision
  • 9413c09b75513b59f38093b1d12c1515a5677d98
  • main default protected
  • variant
3 results

BoardManager.class

Blame
  • Forked from COUETOUX Basile / FirefighterStarter
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Loot.java 221 B
    public class Loot {
        int weight, value;
    
        public Loot(int weight, int value) {
            this.weight = weight;
            this.value = value;
        }
    
        public String toString(){
            return weight+" "+value;
        }
    }