Added FLAXENGINE_API tags in StateMachine.h

This commit is contained in:
intolerantape
2021-08-20 15:43:20 -07:00
parent 628456bcc6
commit 5308c42c1c

View File

@@ -9,7 +9,7 @@ class StateMachine;
/// <summary>
/// State machine state
/// </summary>
class State
class FLAXENGINE_API State
{
friend StateMachine;
@@ -71,7 +71,7 @@ protected:
/// <summary>
/// State machine logic pattern
/// </summary>
class StateMachine
class FLAXENGINE_API StateMachine
{
friend State;