mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Default types - Adjusted namespaces
This commit is contained in:
parent
ed58745a6e
commit
11327eb2ca
@ -1,4 +1,5 @@
|
|||||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||||
|
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=defaulttypes/@EntryIndexedValue">True</s:Boolean>
|
||||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cconditions_005Cwrappers/@EntryIndexedValue">True</s:Boolean>
|
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cconditions_005Cwrappers/@EntryIndexedValue">True</s:Boolean>
|
||||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cdatabindings_005Cmodes/@EntryIndexedValue">True</s:Boolean>
|
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cdatabindings_005Cmodes/@EntryIndexedValue">True</s:Boolean>
|
||||||
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cdatabindings_005Cmodes_005Cconditional/@EntryIndexedValue">True</s:Boolean>
|
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=models_005Cprofile_005Cdatabindings_005Cmodes_005Cconditional/@EntryIndexedValue">True</s:Boolean>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class EqualsConditionOperator : ConditionOperator<object, object>
|
internal class EqualsConditionOperator : ConditionOperator<object, object>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class GreaterThanConditionOperator : ConditionOperator<double, double>
|
internal class GreaterThanConditionOperator : ConditionOperator<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class GreaterThanOrEqualConditionOperator : ConditionOperator<double, double>
|
internal class GreaterThanOrEqualConditionOperator : ConditionOperator<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class LessThanConditionOperator : ConditionOperator<double, double>
|
internal class LessThanConditionOperator : ConditionOperator<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class LessThanOrEqualConditionOperator : ConditionOperator<double, double>
|
internal class LessThanOrEqualConditionOperator : ConditionOperator<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class NotEqualConditionOperator : ConditionOperator<object, object>
|
internal class NotEqualConditionOperator : ConditionOperator<object, object>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class NotNullConditionOperator : ConditionOperator<object>
|
internal class NotNullConditionOperator : ConditionOperator<object>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class NullConditionOperator : ConditionOperator<object>
|
internal class NullConditionOperator : ConditionOperator<object>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class NumberEqualsConditionOperator : ConditionOperator<double, double>
|
internal class NumberEqualsConditionOperator : ConditionOperator<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class NumberNotEqualConditionOperator : ConditionOperator<double, double>
|
internal class NumberNotEqualConditionOperator : ConditionOperator<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class StringContainsConditionOperator : ConditionOperator<string, string>
|
internal class StringContainsConditionOperator : ConditionOperator<string, string>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class StringEndsWithConditionOperator : ConditionOperator<string, string>
|
internal class StringEndsWithConditionOperator : ConditionOperator<string, string>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class StringEqualsConditionOperator : ConditionOperator<string, string>
|
internal class StringEqualsConditionOperator : ConditionOperator<string, string>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes {
|
namespace Artemis.Core {
|
||||||
internal class StringMatchesRegexConditionOperator : ConditionOperator<string, string>
|
internal class StringMatchesRegexConditionOperator : ConditionOperator<string, string>
|
||||||
{
|
{
|
||||||
public override string Description => "Matches Regex";
|
public override string Description => "Matches Regex";
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class StringNotContainsConditionOperator : ConditionOperator<string, string>
|
internal class StringNotContainsConditionOperator : ConditionOperator<string, string>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class StringNotEqualConditionOperator : ConditionOperator<string, string>
|
internal class StringNotEqualConditionOperator : ConditionOperator<string, string>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class StringStartsWithConditionOperator : ConditionOperator<string, string>
|
internal class StringStartsWithConditionOperator : ConditionOperator<string, string>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class FloatDataBindingConverter : FloatDataBindingConverter<float>
|
public class FloatDataBindingConverter : FloatDataBindingConverter<float>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a generic data binding converter that acts as the bridge between a
|
/// Represents a generic data binding converter that acts as the bridge between a
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class IntDataBindingConverter : IntDataBindingConverter<int>
|
public class IntDataBindingConverter : IntDataBindingConverter<int>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class SKColorDataBindingConverter : DataBindingConverter<SKColor, SKColor>
|
public class SKColorDataBindingConverter : DataBindingConverter<SKColor, SKColor>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SKColorBrightenModifierType : DataBindingModifierType<SKColor, float>
|
internal class SKColorBrightenModifierType : DataBindingModifierType<SKColor, float>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SKColorDarkenModifierType : DataBindingModifierType<SKColor, float>
|
internal class SKColorDarkenModifierType : DataBindingModifierType<SKColor, float>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SKColorDesaturateModifierType : DataBindingModifierType<SKColor, float>
|
internal class SKColorDesaturateModifierType : DataBindingModifierType<SKColor, float>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SKColorInvertModifierType : DataBindingModifierType<SKColor>
|
internal class SKColorInvertModifierType : DataBindingModifierType<SKColor>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SKColorRotateHueModifierType : DataBindingModifierType<SKColor, float>
|
internal class SKColorRotateHueModifierType : DataBindingModifierType<SKColor, float>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SKColorSaturateModifierType : DataBindingModifierType<SKColor, float>
|
internal class SKColorSaturateModifierType : DataBindingModifierType<SKColor, float>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SKColorSumModifierType : DataBindingModifierType<SKColor, SKColor>
|
internal class SKColorSumModifierType : DataBindingModifierType<SKColor, SKColor>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class AbsoluteModifierType : DataBindingModifierType<double>
|
internal class AbsoluteModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class DivideModifierType : DataBindingModifierType<double, double>
|
internal class DivideModifierType : DataBindingModifierType<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class MaxModifierType : DataBindingModifierType<double, double>
|
internal class MaxModifierType : DataBindingModifierType<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class MinModifierType : DataBindingModifierType<double, double>
|
internal class MinModifierType : DataBindingModifierType<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class ModuloModifierType : DataBindingModifierType<double, double>
|
internal class ModuloModifierType : DataBindingModifierType<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class MultiplicationModifierType : DataBindingModifierType<double, double>
|
internal class MultiplicationModifierType : DataBindingModifierType<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class PercentageOfModifierType : DataBindingModifierType<double, double>
|
internal class PercentageOfModifierType : DataBindingModifierType<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class PowerModifierType : DataBindingModifierType<double, double>
|
internal class PowerModifierType : DataBindingModifierType<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class CeilingModifierType : DataBindingModifierType<double>
|
internal class CeilingModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class FloorModifierType : DataBindingModifierType<double>
|
internal class FloorModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class RoundModifierType : DataBindingModifierType<double>
|
internal class RoundModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SquareRootModifierType : DataBindingModifierType<double>
|
internal class SquareRootModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SubtractModifierType : DataBindingModifierType<double, double>
|
internal class SubtractModifierType : DataBindingModifierType<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SumModifierType : DataBindingModifierType<double, double>
|
internal class SumModifierType : DataBindingModifierType<double, double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class CosecantModifierType : DataBindingModifierType<double>
|
internal class CosecantModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class CosineModifierType : DataBindingModifierType<double>
|
internal class CosineModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class CotangentModifierType : DataBindingModifierType<double>
|
internal class CotangentModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SecantModifierType : DataBindingModifierType<double>
|
internal class SecantModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class SineModifierType : DataBindingModifierType<double>
|
internal class SineModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
internal class TangentModifierType : DataBindingModifierType<double>
|
internal class TangentModifierType : DataBindingModifierType<double>
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class BoolLayerProperty : LayerProperty<bool>
|
public class BoolLayerProperty : LayerProperty<bool>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class ColorGradientLayerProperty : LayerProperty<ColorGradient>
|
public class ColorGradientLayerProperty : LayerProperty<ColorGradient>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class EnumLayerProperty<T> : LayerProperty<T> where T : Enum
|
public class EnumLayerProperty<T> : LayerProperty<T> where T : Enum
|
||||||
|
|||||||
@ -1,6 +1,4 @@
|
|||||||
using System;
|
namespace Artemis.Core
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class FloatLayerProperty : LayerProperty<float>
|
public class FloatLayerProperty : LayerProperty<float>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class FloatRangeLayerProperty : LayerProperty<FloatRange>
|
public class FloatRangeLayerProperty : LayerProperty<FloatRange>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class IntLayerProperty : LayerProperty<int>
|
public class IntLayerProperty : LayerProperty<int>
|
||||||
|
|||||||
@ -1,6 +1,4 @@
|
|||||||
using System;
|
namespace Artemis.Core
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class IntRangeLayerProperty : LayerProperty<IntRange>
|
public class IntRangeLayerProperty : LayerProperty<IntRange>
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A special layer property used to configure the selected layer brush
|
/// A special layer property used to configure the selected layer brush
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class SKColorLayerProperty : LayerProperty<SKColor>
|
public class SKColorLayerProperty : LayerProperty<SKColor>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class SKPointLayerProperty : LayerProperty<SKPoint>
|
public class SKPointLayerProperty : LayerProperty<SKPoint>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
using SkiaSharp;
|
using SkiaSharp;
|
||||||
|
|
||||||
namespace Artemis.Core.DefaultTypes
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public class SKSizeLayerProperty : LayerProperty<SKSize>
|
public class SKSizeLayerProperty : LayerProperty<SKSize>
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
using Artemis.Core.DefaultTypes;
|
using SkiaSharp;
|
||||||
using SkiaSharp;
|
|
||||||
|
|
||||||
namespace Artemis.Core
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
using Artemis.Core.DefaultTypes;
|
using SkiaSharp;
|
||||||
using SkiaSharp;
|
|
||||||
|
|
||||||
namespace Artemis.Core
|
namespace Artemis.Core
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Artemis.Core.DefaultTypes;
|
|
||||||
|
|
||||||
namespace Artemis.Core.Services
|
namespace Artemis.Core.Services
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Artemis.Core.DefaultTypes;
|
|
||||||
|
|
||||||
namespace Artemis.Core.Services
|
namespace Artemis.Core.Services
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user