File: laser.d

package info (click to toggle)
tatan 1.0.dfsg1-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,548 kB
  • sloc: xml: 57; makefile: 31
file content (17 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module util.laser;
private import util.vector;
private import util.basis;
private import util.parts;

public class Laser:Parts{
	public Vector3 laseraim;
	public this(Vector3 pos = new Vector3() ,Matrix poseBase = new Matrix()){
		super(pos ,poseBase);
	}
	public override void move(){
		super.move();
		laseraim = poseVector();
	}
	
	
}