Mapping and models

This commit is contained in:
Marco 2025-06-22 13:52:23 +02:00
commit 595444885d
21 changed files with 4674 additions and 843 deletions

View file

@ -0,0 +1,11 @@
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; }
}