mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 23:08:05 -05:00
add linker basis
This commit is contained in:
6
src/ZoneWriting/ZoneWriting.cpp
Normal file
6
src/ZoneWriting/ZoneWriting.cpp
Normal file
@ -0,0 +1,6 @@
|
||||
#include "ZoneWriting.h"
|
||||
|
||||
bool ZoneWriting::WriteZone(Zone* zone)
|
||||
{
|
||||
return true;
|
||||
}
|
9
src/ZoneWriting/ZoneWriting.h
Normal file
9
src/ZoneWriting/ZoneWriting.h
Normal file
@ -0,0 +1,9 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
#include "Zone/Zone.h"
|
||||
|
||||
class ZoneWriting
|
||||
{
|
||||
public:
|
||||
static bool WriteZone(Zone* zone);
|
||||
};
|
Reference in New Issue
Block a user