Skip to content

Commit

Permalink
chore: extend EmptyComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
skaldarnar committed Jul 12, 2021
1 parent c27e570 commit d5418eb
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@
import org.terasology.engine.network.FieldReplicateType;
import org.terasology.engine.network.Replicate;
import org.terasology.gestalt.entitysystem.component.Component;
import org.terasology.gestalt.entitysystem.component.EmptyComponent;

/**
* When this component is attached to a character a appearance selection dialog will be shown when the player joins.
*/
@Replicate(FieldReplicateType.SERVER_TO_CLIENT)
public class ShowCharacterAppearanceDialogComponent implements Component<ShowCharacterAppearanceDialogComponent> {
@Override
public void copy(ShowCharacterAppearanceDialogComponent other) {
}
public class ShowCharacterAppearanceDialogComponent extends EmptyComponent<ShowCharacterAppearanceDialogComponent> {
}

0 comments on commit d5418eb

Please sign in to comment.