using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BallanceStalker { public class GodotPollutedObject : Godot.Object { public GodotPollutedObject() { Data = null; } public GodotPollutedObject(object deliver) { Data = deliver; } private object Data; public T GetData() where T : class { return Data as T; } } }