Files
tictactoe/Gameplay/Contact.cs
2026-01-19 17:44:00 -05:00

24 lines
338 B
C#

using Godot;
using System;
public partial class Contact : Sprite2D
{
public Player _player;
public int _number;
public override void _Ready()
{
}
public void PassNumber(int NUMBER)
{
_number = NUMBER;
}
public void PassPlayer(Player PLAYER)
{
_player = PLAYER;
}
}