mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
11 lines
269 B
C#
11 lines
269 B
C#
|
|
using Cirno.Scripts.Resources;
|
|||
|
|
using Godot;
|
|||
|
|
|
|||
|
|
namespace Cirno.Scripts.Controllers;
|
|||
|
|
|
|||
|
|
[GlobalClass]
|
|||
|
|
public partial class PooledBulletInfo : Resource
|
|||
|
|
{
|
|||
|
|
[Export] public BulletResource Bullet { get; private set; }
|
|||
|
|
[Export] public int Amount { get; private set; }
|
|||
|
|
}
|