renamed *Factory to *Builder

Former-commit-id: 780f44b223dcd950433202297cde68e1160066ab
Former-commit-id: 23a9b3ef5573ff7469e27e6b2af3759d542549f3
This commit is contained in:
Song Minjae
2016-04-12 12:18:16 +09:00
parent cee702da32
commit 2a34efb489
4 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ import java.io.IOException
* Created by minjaesong on 16-03-14.
*/
object CreatureFactory {
object CreatureBuilder {
/**
* @Param jsonFileName with extension

View File

@@ -6,7 +6,7 @@ import com.torvald.terrarum.mapdrawer.MapDrawer
/**
* Created by minjaesong on 16-03-25.
*/
object PFCynthia {
object PBCynthia {
fun create(): Player {
val p: Player = Player()

View File

@@ -13,7 +13,7 @@ import java.io.IOException
* Created by minjaesong on 16-03-14.
*/
object PFSigrid {
object PBSigrid {
fun create(): Player {
val p = Player()

View File

@@ -6,7 +6,7 @@ import java.io.IOException
/**
* Created by minjaesong on 16-03-15.
*/
object PlayerFactory {
object PlayerBuilder {
private val JSONPATH = "./res/raw/"
private val jsonString = String()