Skip to content

Latest commit

 

History

History
57 lines (45 loc) · 1.91 KB

README.md

File metadata and controls

57 lines (45 loc) · 1.91 KB

ld48 29 game

Game for Omsk Ludum dare 29.

###Download release

class Game {
  public static String theme = "Beneath the surface";
  
  public final String name = "Beneath the surface of Democracy";
  public final String short_name = "BSoD";
  
  public final TeamMater[] teamMaters;
  
  public final String description = """
    In modern world democracy and human rights violated regulary. 
    You have unique chance to bring freedom and democracy to unknown east country. 
    All characters and events depicted are fictional, 
    and any resemblance to persons living, dead, or fictional or situations past, present, 
    or fictional is purely and completely coincidental
    """
  
  public Game() {
    teamMaters = new TeamMater[] {
      new TeamMater("Blan4", TeamMater.Role.PROGRAMMER),
      new TeamMater("BOOtak", TeamMater.Role.PROGRAMMER),
      new TeamMater("Over64", TeamMater.Role.PROGRAMMER),
      new TeamMater("Eve-eveline", TeamMater.Role.PAINTER)
    };
  }
  
  public class TeamMater {
    private final String name;
    private final Role role;
    
    public enum Role {
      PROGRAMER, PAINTER
    }
    
    public TeamMater(String n, Role r) {
      this.name = n;
      this.role = r;
    }
    
    public String getName() { return this.name; }
    public Role getRole() { return this.role; }
  }
}