2019-08-04 00:59:18 +02:00
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
2019-08-14 16:17:48 +02:00
|
|
|
|
namespace Saltosion.OneWeapon.Guns {
|
2019-08-04 00:59:18 +02:00
|
|
|
|
public class Bullet : MonoBehaviour {
|
|
|
|
|
|
|
|
|
|
public Vector2 Direction;
|
|
|
|
|
public float InitialRotation;
|
|
|
|
|
}
|
|
|
|
|
}
|