summaryrefslogtreecommitdiff
path: root/Runtime/Terrain/Tree.h
blob: af4e069ca24dfb33c23d4ea9036f6f1b97f5be00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef TREE_H
#define TREE_H

#include "Runtime/BaseClasses/GameObject.h"

class MonoBehaviour;



class Tree : public Unity::Component
{
public:
public:
	REGISTER_DERIVED_CLASS(Tree, Component)
	DECLARE_OBJECT_SERIALIZE(Tree)
	
	Tree(MemLabelId label, ObjectCreationMode mode);
	// ~Tree(); declared by a macro
		
	void SetTreeData (PPtr<MonoBehaviour> tree);
	PPtr<MonoBehaviour> GetTreeData ();
	
	static void InitializeClass ();
	static void CleanupClass () {}
	
	void OnWillRenderObject ();

private:
	UInt32 CalculateSupportedMessages ();
	
	#if UNITY_EDITOR
	PPtr<MonoBehaviour> m_TreeData;
	#endif
};

#endif