12 lines
203 B
C#
12 lines
203 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Interaction
|
|||
|
{
|
|||
|
public class Copier : MonoBehaviour
|
|||
|
{
|
|||
|
public void Copy()
|
|||
|
{
|
|||
|
Debug.Log("Kopierer erfolgreich benutzt!");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|