PBG2H23ABR_PBG2H23AKL_PMC_P.../Plunderblock/Assets/Scripts/ScriptsKevin/DataBullet.cs
2024-06-14 16:58:09 +02:00

19 lines
409 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
[CreateAssetMenu(fileName = "BulletScriptableObject", menuName = "BulletScriptableObject", order = 0)]
public class DataBullet : ScriptableObject
{
public float damage = 10;
public float speed = 5f;
public int ammo;
public void setDamage(float damage){
this.damage = damage;
}
}