mirror of
https://github.com/Ellpeck/TinyLifeExampleMod.git
synced 2024-10-31 19:40:49 +01:00
code cleanup
This commit is contained in:
parent
1943ccd7a3
commit
6aca205bfd
4 changed files with 8 additions and 9 deletions
|
@ -13,8 +13,7 @@ namespace ExampleMod;
|
||||||
// see CustomTable for information on how to store custom action-specific information to disk as well
|
// see CustomTable for information on how to store custom action-specific information to disk as well
|
||||||
public class SitDownOnGrassAction : MultiAction {
|
public class SitDownOnGrassAction : MultiAction {
|
||||||
|
|
||||||
public SitDownOnGrassAction(ActionType type, ActionInfo info) : base(type, info) {
|
public SitDownOnGrassAction(ActionType type, ActionInfo info) : base(type, info) {}
|
||||||
}
|
|
||||||
|
|
||||||
protected override IEnumerable<Action> CreateFirstActions() {
|
protected override IEnumerable<Action> CreateFirstActions() {
|
||||||
// we want to walk to the location clicked, so we use the current action info
|
// we want to walk to the location clicked, so we use the current action info
|
||||||
|
|
Loading…
Reference in a new issue