14 lines
211 B
C#
14 lines
211 B
C#
using Godot;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
public partial class Opponent : Player
|
|
{
|
|
|
|
public void MakeMove()
|
|
{
|
|
// CREATE CODE TO MAKE ENEMY MOVES
|
|
}
|
|
}
|