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