Deleted useless Artemis classes.

This commit is contained in:
2014-02-05 15:10:02 -04:30
parent 4893313116
commit 5bd79f0d58
2 changed files with 0 additions and 76 deletions

View File

@@ -1,40 +0,0 @@
/*
* Copyright (C) 2013 Miguel Angel Astor Romero
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ve.ucv.ciens.ccg.nxtar.components;
import com.artemis.Component;
import com.badlogic.gdx.graphics.Pixmap;
import com.badlogic.gdx.graphics.Texture;
public class VideoFrame extends Component {
private Texture frame;
public VideoFrame(){ }
public VideoFrame(byte[] imageData){
frame = new Texture(new Pixmap(imageData, 0, imageData.length));
}
public Texture getFrame(){
return frame;
}
public void setFrame(byte[] imageData){
if(frame != null)
frame.dispose();
frame = new Texture(new Pixmap(imageData, 0, imageData.length));
}
}

View File

@@ -1,36 +0,0 @@
/*
* Copyright (C) 2013 Miguel Angel Astor Romero
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ve.ucv.ciens.ccg.nxtar.systems;
import ve.ucv.ciens.ccg.nxtar.components.VideoFrame;
import com.artemis.Aspect;
import com.artemis.Entity;
import com.artemis.systems.EntityProcessingSystem;
public class RenderSystem extends EntityProcessingSystem {
@SuppressWarnings("unchecked")
public RenderSystem(Aspect aspect) {
super(Aspect.getAspectForAll(VideoFrame.class));
}
@Override
protected void process(Entity arg0) {
}
}