first commit
This commit is contained in:
23
Gameplay/Contact.cs
Normal file
23
Gameplay/Contact.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user