mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-10 22:36:06 +01:00
8 lines
155 B
Java
8 lines
155 B
Java
|
package com.jozufozu.flywheel.util;
|
||
|
|
||
|
import com.jozufozu.flywheel.backend.gl.buffer.VecBuffer;
|
||
|
|
||
|
public interface WriteSafe {
|
||
|
void write(VecBuffer buf);
|
||
|
}
|