12 lines
165 B
C#
12 lines
165 B
C#
|
using Godot;
|
||
|
|
||
|
namespace SpaceCapture;
|
||
|
|
||
|
[GlobalClass]
|
||
|
public partial class PlayerAI : Player
|
||
|
{
|
||
|
public override void ProcessGameTick(GameLogic game)
|
||
|
{
|
||
|
}
|
||
|
}
|