mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-17 09:14:34 +00:00
Directory Structure [step 1]: moving files
working on #672 NOTE: This commit can't be compiled!!
This commit is contained in:
28
src/tools/mesh_extractor/LiquidHandler.h
Normal file
28
src/tools/mesh_extractor/LiquidHandler.h
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* Copyright (C)
|
||||
*
|
||||
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
||||
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
||||
*/
|
||||
|
||||
#ifndef LIQUID_H
|
||||
#define LIQUID_H
|
||||
#include "ADT.h"
|
||||
#include "Utils.h"
|
||||
#include "Define.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
class LiquidHandler
|
||||
{
|
||||
public:
|
||||
LiquidHandler(ADT* adt);
|
||||
|
||||
ADT* Source;
|
||||
std::vector<Vector3> Vertices;
|
||||
std::vector<Triangle<uint32> > Triangles;
|
||||
std::vector<MCNKLiquidData> MCNKData;
|
||||
private:
|
||||
void HandleNewLiquid();
|
||||
};
|
||||
#endif
|
||||
Reference in New Issue
Block a user