mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-09 22:06:09 +01:00
a1bf03689c
- Complete hack that definitely won't come back to bite me - Also slighting change some unsafe writing stuff
9 lines
202 B
Java
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);
|
|
}
|