-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from MineFact/2.X
Fix migration issues
- Loading branch information
Showing
5 changed files
with
121 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
plugin/src/main/java/lol/pyr/znpcsplus/conversion/znpcs/model/ZNpcsConversation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package lol.pyr.znpcsplus.conversion.znpcs.model; | ||
|
||
@SuppressWarnings("unused") | ||
public class ZNpcsConversation { | ||
|
||
private String conversationName; | ||
private String conversationType; | ||
|
||
public String getConversationName() { | ||
return conversationName; | ||
} | ||
|
||
public String getConversationType() { | ||
return conversationType; | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
plugin/src/main/java/lol/pyr/znpcsplus/conversion/znpcs/model/ZNpcsConversationText.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package lol.pyr.znpcsplus.conversion.znpcs.model; | ||
|
||
@SuppressWarnings("unused") | ||
public class ZNpcsConversationText { | ||
|
||
private String[] lines; | ||
private ZNpcsAction[] actions; | ||
private int delay; | ||
|
||
public String[] getLines() { | ||
return lines; | ||
} | ||
public ZNpcsAction[] getActions() { | ||
return actions; | ||
} | ||
public int getDelay() { | ||
return delay; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
plugin/src/main/java/lol/pyr/znpcsplus/conversion/znpcs/model/ZnpcsConversations.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package lol.pyr.znpcsplus.conversion.znpcs.model; | ||
|
||
@SuppressWarnings("unused") | ||
public class ZnpcsConversations { | ||
|
||
private String name; | ||
private ZNpcsConversationText[] texts; | ||
private int radius; | ||
private int delay; | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
public ZNpcsConversationText[] getTexts() { | ||
return texts; | ||
} | ||
public int getRadius() { | ||
return radius; | ||
} | ||
public int getDelay() { | ||
return delay; | ||
} | ||
} |