Newer
Older
Cactus-CleanArchitecture / app / src / main / java / org / ntlab / radishforandroidstudio / cactusClient / models / NormalBullet.java
s-iwatani on 18 Oct 2018 523 bytes 名前変更
package org.ntlab.radishforandroidstudio.cactusClient.models;

import org.ntlab.radishforandroidstudio.framework.animation.Animation3D;
import org.ntlab.radishforandroidstudio.framework.model3D.Object3D;
import org.ntlab.radishforandroidstudio.framework.physics.Solid3D;

public class NormalBullet extends MyBullet {
    public NormalBullet(Object3D body, Animation3D animation) {
        super(body, animation);
    }

    public NormalBullet(Solid3D body, Animation3D animation) {
        super(body, animation);
    }
}