Update Project
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
|
||||
namespace Zenject
|
||||
{
|
||||
[NoReflectionBaking]
|
||||
public class ValidationMarker
|
||||
{
|
||||
public ValidationMarker(
|
||||
Type markedType, bool instantiateFailed)
|
||||
{
|
||||
MarkedType = markedType;
|
||||
InstantiateFailed = instantiateFailed;
|
||||
}
|
||||
|
||||
public ValidationMarker(Type markedType)
|
||||
: this(markedType, false)
|
||||
{
|
||||
}
|
||||
|
||||
public bool InstantiateFailed
|
||||
{
|
||||
get;
|
||||
private set;
|
||||
}
|
||||
|
||||
public Type MarkedType
|
||||
{
|
||||
get;
|
||||
private set;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user