feat(battle-engine): final type-frontier residual (Story/Title/Friend stubs, SDK anchors, Unity AndroidJavaObject/WebCamTexture)

Clears the last CS0246/CS0234 type frontier; per F3 this unmasks the AI-subsystem
member bodies (~9k member-level errors) -- next grind is extension copies + god-object
member growth.
This commit is contained in:
gamer147
2026-06-05 20:34:49 -04:00
parent 824309ec44
commit c3bd39f2cb
3 changed files with 48 additions and 1 deletions

View File

@@ -326,9 +326,13 @@ namespace UnityEngine
public class SerializeField : Attribute { }
public class HideInInspector : Attribute { }
public class ExecuteInEditMode : Attribute { }
public class ExecuteAlwaysAttribute : Attribute { }
public class AndroidJavaObject : IDisposable { public AndroidJavaObject(string className, params object[] args) { } public T Call<T>(string method, params object[] args) => default; public void Call(string method, params object[] args) { } public T Get<T>(string name) => default; public void Set<T>(string name, T val) { } public void Dispose() { } }
public class WebCamTexture : Texture { public WebCamTexture() { } public WebCamTexture(int w, int h, int fps) { } public void Play() { } public void Stop() { } public bool isPlaying => false; public Color32[] GetPixels32() => new Color32[0]; }
public class AddComponentMenu : Attribute { public AddComponentMenu(string n) { } public AddComponentMenu(string n, int o) { } }
public class ContextMenu : Attribute { public ContextMenu(string n) { } }
public class RequireComponent : Attribute { public RequireComponent(Type a) { } public RequireComponent(Type a, Type b) { } }
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class RequireComponent : Attribute { public RequireComponent(Type a) { } public RequireComponent(Type a, Type b) { } public RequireComponent(Type a, Type b, Type c) { } }
public class HeaderAttribute : Attribute { public HeaderAttribute(string h) { } }
public class TooltipAttribute : Attribute { public TooltipAttribute(string t) { } }
public class SpaceAttribute : Attribute { public SpaceAttribute() { } public SpaceAttribute(float h) { } }