Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature(ecs-gestalt): Migrate Components to gestalt's Components #71

Merged
merged 4 commits into from
Aug 25, 2021

Conversation

pollend
Copy link
Member

@pollend pollend commented Jul 12, 2021

public class RaycastOnActivateComponent implements Component {
import org.terasology.gestalt.entitysystem.component.Component;

public class RaycastOnActivateComponent implements Component<RaycastOnActivateComponent> {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should extend EmptyComponent


public class SetTeamOnActivateComponent implements Component {
public class SetTeamOnActivateComponent implements Component<SetTeamOnActivateComponent> {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should extend EmptyComponent


public class TakeBlockOnActivateComponent implements Component {
public class TakeBlockOnActivateComponent implements Component<TakeBlockOnActivateComponent> {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should extend EmptyComponent

@@ -2,7 +2,11 @@
// SPDX-License-Identifier: Apache-2.0
package org.terasology.lightandshadowresources.components;

import org.terasology.engine.entitySystem.Component;
import org.terasology.gestalt.entitysystem.component.Component;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should extend EmptyComponent

@jdrueckert jdrueckert merged commit 4997af4 into develop Aug 25, 2021
@jdrueckert jdrueckert deleted the feature/migrate-ecs-to-gestalt branch August 25, 2021 19:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants