mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:25:35 +00:00
11 lines
No EOL
269 B
C#
11 lines
No EOL
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; }
|
|
} |