package com.siondream.core.entity.components;
import ashley.core.Component;
import ashley.utils.Pool.Poolable;
public class OverridePhysicsComponent extends Component implements Poolable {
public boolean enable;
public boolean autoDisable;
public OverridePhysicsComponent() {
reset();
}
public OverridePhysicsComponent(OverridePhysicsComponent other) {
enable = other.enable;
autoDisable = other.autoDisable;
}
@Override
public void reset() {
enable = true;
autoDisable = true;
}
}