ResourceIO.h
1 #pragma once
2 
3 namespace VoxelFarm
4 {
7  {
8  public:
10  virtual void read(char* buffer, unsigned int size) = 0;
11  };
12 }
virtual void read(char *buffer, unsigned int size)=0
Reads and copies the specified number of bytes into the buffer.
Contains all classes and functions for the VoxelFarm engine.
An interface to abstract reading resource data.
Definition: ResourceIO.h:6