mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-10 22:36:06 +01:00
10 lines
203 B
Java
10 lines
203 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 addr);
|
||
|
}
|