Survivalcraft API 1.8.2.3 v1.8.2.3
Survivalcraft 2.4
载入中...
搜索中...
未找到
IAStarStorage.cs
浏览该文件的文档.
1namespace Game {
2 public interface IAStarStorage<T> {
3 void Clear();
4
5 object Get(T p);
6
7 void Set(T p, object data);
8 }
9}
void Set(T p, object data)