12 lines
243 B
C#
12 lines
243 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Saltosion.OneWeapon.Guns {
|
|
public class Bullet : MonoBehaviour {
|
|
|
|
public Vector2 Direction;
|
|
public float InitialRotation;
|
|
}
|
|
}
|