Merge branch 'Missing-FLAXENGINE_API-Tags' of git://github.com/intolerantape/FlaxEngine into intolerantape-Missing-FLAXENGINE_API-Tags

This commit is contained in:
Wojtek Figat
2021-09-23 12:19:36 +02:00
3 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ namespace Log
/// <summary>
/// Represents errors that occur during application execution.
/// </summary>
class Exception : public Object
class FLAXENGINE_API Exception : public Object
{
protected:

View File

@@ -8,7 +8,7 @@
/// <summary>
/// Encapsulates information about a single Mono (managed) fields belonging to some managed class. This object also allows you to access the field data of an object instance.
/// </summary>
class MField
class FLAXENGINE_API MField
{
friend MClass;

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;