Kawarp Shader <3

This commit is contained in:
meowarex
2026-08-14 06:21:00 +00:00
parent 625d012e17
commit 526e424621
35 changed files with 3051 additions and 327 deletions
@@ -0,0 +1,5 @@
package androidx.compose.runtime;
public interface Composer {
void startReplaceGroup(int key);
void endReplaceGroup();
}
@@ -0,0 +1,2 @@
package androidx.compose.runtime;
public interface MutableState extends State { void setValue(Object value); }
@@ -0,0 +1,2 @@
package androidx.compose.runtime;
public interface SnapshotMutationPolicy {}
@@ -0,0 +1,4 @@
package androidx.compose.runtime;
public final class SnapshotStateKt {
public static MutableState mutableStateOf$default(Object value, SnapshotMutationPolicy policy, int flags, Object marker) { return null; }
}
@@ -0,0 +1,2 @@
package androidx.compose.runtime;
public interface State { Object getValue(); }