Flywheel/src/main/java/com/jozufozu/flywheel/util/WriteUnsafe.java
Jozufozu a1bf03689c Fix diffuse lighting in batching engine
- Complete hack that definitely won't come back to bite me
 - Also slighting change some unsafe writing stuff
2021-12-22 16:11:56 -08:00

9 lines
202 B
Java

package com.jozufozu.flywheel.util;
public interface WriteUnsafe {
/**
* Write the contents of this object into sequential memory starting at the given address.
*/
void writeUnsafe(long ptr);
}