mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
Generic enemies
This commit is contained in:
parent
762666242e
commit
d99c773641
55 changed files with 968 additions and 204 deletions
14
Scripts/Components/BulletFlags.cs
Normal file
14
Scripts/Components/BulletFlags.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using System;
|
||||
|
||||
namespace Cirno.Scripts.Components;
|
||||
|
||||
[Flags]
|
||||
public enum BulletFlags
|
||||
{
|
||||
Freezable = 1 << 1,
|
||||
Controllable = 1 << 2,
|
||||
Bouncy = 1 << 3,
|
||||
Piercing = 1 << 4,
|
||||
Grazeable = 1 << 5,
|
||||
Rotateable = 1 << 6,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue