Added package object

This commit is contained in:
Robert 2020-12-14 13:26:00 +01:00
parent c0fb378f2e
commit ac1ac444aa
8 changed files with 117 additions and 17 deletions

View file

@ -0,0 +1,19 @@
#pragma once
#include <string>
namespace Anki
{
class Package
{
public:
Package();
Package(const std::string& filename);
~Package();
int Open(const std::string& filename);
private:
char* collection;
};
}