mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-22 05:55:35 +00:00
restructure codebase according to vcproj filters
This commit is contained in:
17
Minecraft.World/ConsoleJavaLibs/FloatBuffer.h
Normal file
17
Minecraft.World/ConsoleJavaLibs/FloatBuffer.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
#include "Buffer.h"
|
||||
|
||||
class FloatBuffer : public Buffer {
|
||||
private:
|
||||
float* buffer;
|
||||
|
||||
public:
|
||||
FloatBuffer(unsigned int capacity);
|
||||
FloatBuffer(unsigned int capacity, float* backingArray);
|
||||
virtual ~FloatBuffer();
|
||||
|
||||
FloatBuffer* flip();
|
||||
FloatBuffer* put(float f);
|
||||
void get(floatArray* dst);
|
||||
float* _getDataPointer() { return buffer; }
|
||||
};
|
||||
Reference in New Issue
Block a user