first commit

This commit is contained in:
2022-07-02 21:23:45 +08:00
commit 7cdcaf1e2f
102 changed files with 7208 additions and 0 deletions

View File

@ -0,0 +1,25 @@
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<T>() where T : class {
return Data as T;
}
}
}