mirror of
https://github.com/curioustorvald/Terrarum.git
synced 2026-06-10 02:24:05 +09:00
get operator on Tile/ItemPropCodex
Former-commit-id: f6c4ecbad8c0ce2486524be70e68292d6aae799e Former-commit-id: 9738a693eb55861d1292e59d8df2bec7f5603c40
This commit is contained in:
@@ -6,11 +6,11 @@ import java.util.*
|
||||
* Created by minjaesong on 16-09-08.
|
||||
*/
|
||||
object ComputerPartsCodex {
|
||||
val rams = HashMap<Int, Int>() // itemID, capacity in bytes (0 bytes - 8 GBytes)
|
||||
val processors = HashMap<Int, Int>() // itemID, cycles
|
||||
val harddisks = HashMap<Int, Int>() // itemID, capacity in bytes
|
||||
val diskettes = HashMap<Int, Int>() // itemID, capacity in bytes
|
||||
val opticaldiscs = HashMap<Int, Int>() // itemID, capacity in bytes
|
||||
val rams = HashMap<Int, Int>() // id, capacity in bytes (0 bytes - 8 GBytes)
|
||||
val processors = HashMap<Int, Int>() // id, cycles
|
||||
val harddisks = HashMap<Int, Int>() // id, capacity in bytes
|
||||
val diskettes = HashMap<Int, Int>() // id, capacity in bytes
|
||||
val opticaldiscs = HashMap<Int, Int>() // id, capacity in bytes
|
||||
|
||||
init {
|
||||
// in kilobytes
|
||||
|
||||
Reference in New Issue
Block a user