mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-03-07 20:31:51 +09:00
First commit
Former-commit-id: 9340873f9cfb15264004c32d6e4b8f8bd6828d94 Former-commit-id: 1916747c109876aa064412e01204c3aeda9bbbc0
This commit is contained in:
37
src/com/Torvald/ImageFont/GameFontBlack.java
Normal file
37
src/com/Torvald/ImageFont/GameFontBlack.java
Normal file
@@ -0,0 +1,37 @@
|
||||
package com.Torvald.ImageFont;
|
||||
|
||||
import org.newdawn.slick.SlickException;
|
||||
import org.newdawn.slick.SpriteSheet;
|
||||
|
||||
/**
|
||||
* Created by minjaesong on 16-01-27.
|
||||
*/
|
||||
public class GameFontBlack extends GameFontBase {
|
||||
|
||||
public GameFontBlack() throws SlickException {
|
||||
super();
|
||||
|
||||
hangulSheet = new SpriteSheet(
|
||||
"./res/graphics/fonts/han_atlas_black.png"
|
||||
, W_CJK
|
||||
, H_CJK
|
||||
);
|
||||
asciiSheet = new SpriteSheet(
|
||||
"./res/graphics/fonts/ascii_majuscule_black.png"
|
||||
, W_EM
|
||||
, H
|
||||
);
|
||||
asciiSheetEF = new SpriteSheet(
|
||||
"./res/graphics/fonts/ascii_special_ef_black.png"
|
||||
, W_EF
|
||||
, H
|
||||
);
|
||||
|
||||
SpriteSheet[] shk = {
|
||||
asciiSheet
|
||||
, asciiSheetEF
|
||||
, hangulSheet
|
||||
};
|
||||
sheetKey = shk;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user