summaryrefslogtreecommitdiff
path: root/GameCode/BulletWrapper.cs
blob: 12297871b980966671211da8f6de85a67ac3afde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using UnityEngine;

public class BulletWrapper
{
	public float damage;

	public Vector2 velocity;

	public ProjectileHit projectileHit;

	public MoveTransform projectileMovement;
}