MCPcopy Create free account
hub / github.com/demoth/jake2 / get

Method get

client/src/main/java/jake2/client/sound/lwjgl/PlaySound.java:112–120  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

110 }
111
112 private static PlaySound get() {
113 PlaySound ps = freeList.next;
114 if (ps == freeList)
115 return null;
116
117 ps.prev.next = ps.next;
118 ps.next.prev = ps.prev;
119 return ps;
120 }
121
122 private static void add(PlaySound ps) {
123

Callers 15

allocateMethod · 0.95
CompleteCommandMethod · 0.45
Key_Bind_fMethod · 0.45
Key_Unbind_fMethod · 0.45
VClass · 0.45
CLClass · 0.45
Sky_fMethod · 0.45
LoadPCXMethod · 0.45
Huff1TableInitMethod · 0.45
ReadNextFrameMethod · 0.45
KeyDownMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected