Skip to content
This repository has been archived by the owner on Oct 17, 2023. It is now read-only.

Commit

Permalink
Updating license headers (to the corresponding year)! V1.7.5 - WARDEN!
Browse files Browse the repository at this point in the history
  • Loading branch information
ErmacMKIII committed May 24, 2020
1 parent b1bd3bd commit 5e88b37
Show file tree
Hide file tree
Showing 11 changed files with 2,287 additions and 2,287 deletions.
678 changes: 339 additions & 339 deletions src/rs/alexanderstojanovich/dfg/fonts/BMF.java

Large diffs are not rendered by default.

104 changes: 52 additions & 52 deletions src/rs/alexanderstojanovich/dfg/fonts/BMFChar.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2019 Coa
/*
* Copyright (C) 2020 Alexander Stojanovich <coas91@rocketmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand All @@ -14,53 +14,53 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package rs.alexanderstojanovich.dfg.fonts;

/**
*
* @author Coa
*/
public class BMFChar extends DoomFontChar {

// Character x and y offset relative to the corresponding cursor
private int relx, rely;
// Horizontal cursor shift after drawing the character
// (used instead of width) in addition to the global font value of space
// added after each character
private int shift;

//--------------------------------------------------------------------------
// A - CONSTRUCTOR
//--------------------------------------------------------------------------
public BMFChar(char c, int w, int h) {
super(c, w, h);
}

//--------------------------------------------------------------------------
// B - GETTERS AND SETTERS (TRIVIAL)
//--------------------------------------------------------------------------
public int getRelx() {
return relx;
}

public void setRelx(int relx) {
this.relx = relx;
}

public int getRely() {
return rely;
}

public void setRely(int rely) {
this.rely = rely;
}

public int getShift() {
return shift;
}

public void setShift(int shift) {
this.shift = shift;
}

}
package rs.alexanderstojanovich.dfg.fonts;

/**
*
* @author Alexander Stojanovich <coas91@rocketmail.com>
*/
public class BMFChar extends DoomFontChar {

// Character x and y offset relative to the corresponding cursor
private int relx, rely;
// Horizontal cursor shift after drawing the character
// (used instead of width) in addition to the global font value of space
// added after each character
private int shift;

//--------------------------------------------------------------------------
// A - CONSTRUCTOR
//--------------------------------------------------------------------------
public BMFChar(char c, int w, int h) {
super(c, w, h);
}

//--------------------------------------------------------------------------
// B - GETTERS AND SETTERS (TRIVIAL)
//--------------------------------------------------------------------------
public int getRelx() {
return relx;
}

public void setRelx(int relx) {
this.relx = relx;
}

public int getRely() {
return rely;
}

public void setRely(int rely) {
this.rely = rely;
}

public int getShift() {
return shift;
}

public void setShift(int shift) {
this.shift = shift;
}

}
Loading

0 comments on commit 5e88b37

Please sign in to comment.