14 lines
228 B
C#
14 lines
228 B
C#
![]() |
using Godot;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot.Collections;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
[GlobalClass,Tool]
|
||
|
public partial class Bullet:Node
|
||
|
{
|
||
|
[Export]
|
||
|
public Action onActivate;
|
||
|
}
|
||
|
}
|