10 lines
		
	
	
	
		
			292 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			292 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace TanksServer.Models;
 | |
| 
 | |
| internal sealed class Bullet(Player tankOwner, FloatPosition position, double rotation)
 | |
| {
 | |
|     public Player Owner { get; } = tankOwner;
 | |
|     
 | |
|     public FloatPosition Position { get; set; } = position;
 | |
|     
 | |
|     public double Rotation { get; set; } = rotation;
 | |
| }
 | 
