Newer
Older
Cactus-CleanArchitecture / app / src / main / java / org / ntlab / radishforandroidstudio / cactusClient / controller / NormalBullet.java
package org.ntlab.radishforandroidstudio.cactusClient.controller;

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);
    }
}