Rectified heretic YY-MM-DD to standard YYYY-MM-DD

This commit is contained in:
minjaesong
2017-09-20 14:36:40 +09:00
parent 5ebb83f1ed
commit b16de87dd5
188 changed files with 192 additions and 188 deletions

View File

@@ -4,7 +4,7 @@ package net.torvald.terrarum.virtualcomputer.terminal
/**
* Default text terminal.
*
* Created by minjaesong on 16-09-07.
* Created by minjaesong on 2016-09-07.
*/
/*open class SimpleTextTerminal(
phosphorColour: Color, override val width: Int, override val height: Int, private val host: TerrarumComputer,

View File

@@ -3,7 +3,7 @@ package net.torvald.terrarum.virtualcomputer.terminal
import com.badlogic.gdx.graphics.g2d.SpriteBatch
/**
* Created by minjaesong on 16-09-14.
* Created by minjaesong on 2016-09-14.
*/
interface Teletype {
val width: Int

View File

@@ -6,7 +6,7 @@ import net.torvald.terrarum.blendNormal
import java.util.*
/**
* Created by minjaesong on 16-09-15.
* Created by minjaesong on 2016-09-15.
*/
/*class TeletypeTerminal : Teletype {
override val width = 40

View File

@@ -11,7 +11,7 @@ import net.torvald.terrarum.gameactors.Second
*
* Background color is fixed; text color is variable
*
* Created by minjaesong on 16-09-07.
* Created by minjaesong on 2016-09-07.
*/
interface Terminal : Teletype {
override val width: Int

View File

@@ -4,7 +4,7 @@ import net.torvald.terrarum.virtualcomputer.computer.TerrarumComputer
import java.io.InputStream
/**
* Created by minjaesong on 16-09-10.
* Created by minjaesong on 2016-09-10.
*/
class TerminalInputStream(val host: TerrarumComputer) : InputStream() {

View File

@@ -5,7 +5,7 @@ import java.io.OutputStream
import java.io.PrintStream
/**
* Created by minjaesong on 16-09-10.
* Created by minjaesong on 2016-09-10.
*/
class TerminalPrintStream(val host: TerrarumComputer) : PrintStream(TerminalOutputStream(host))