ignore bin and obj
This commit is contained in:
parent
ed0a4bcfc6
commit
e0a9fb8c67
2
.gitignore
vendored
2
.gitignore
vendored
@ -3,3 +3,5 @@
|
||||
################################################################################
|
||||
|
||||
/.vs/SpriteLibrary
|
||||
/SpriteLibrary/bin/Release
|
||||
/SpriteLibrary/obj/Release
|
||||
|
@ -1090,7 +1090,15 @@ namespace SpriteLibrary
|
||||
{
|
||||
LinkedControllers.Add(ControllerToLinkToThis);
|
||||
}
|
||||
ControllerToLinkToThis.LinkControllersForSpriteTemplateSharing(this); //link the other direction also
|
||||
ControllerToLinkToThis.LinkControllersForSpriteTemplateSharingInternal(this); //link the other direction also
|
||||
}
|
||||
internal void LinkControllersForSpriteTemplateSharingInternal(SpriteController ControllerToLinkToThis)
|
||||
{
|
||||
if (ControllerToLinkToThis == null) return;
|
||||
if (!LinkedControllers.Contains(ControllerToLinkToThis))
|
||||
{
|
||||
LinkedControllers.Add(ControllerToLinkToThis);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
1
SpriteLibrary/obj/Release/CoreCompileInputs.cache
Normal file
1
SpriteLibrary/obj/Release/CoreCompileInputs.cache
Normal file
@ -0,0 +1 @@
|
||||
a8cf27034d92fac0fcc617c33163b8923a432866
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
C:\Users\TimYo\Documents\Visual Studio 2015\Projects\SpriteLibrary\SpriteLibrary\bin\Release\SpriteLibrary.XML
|
||||
C:\Users\TimYo\Documents\Visual Studio 2015\Projects\SpriteLibrary\SpriteLibrary\bin\Release\SpriteLibrary.dll
|
||||
C:\Users\TimYo\Documents\Visual Studio 2015\Projects\SpriteLibrary\SpriteLibrary\bin\Release\SpriteLibrary.pdb
|
||||
C:\Users\TimYo\Documents\Visual Studio 2015\Projects\SpriteLibrary\SpriteLibrary\obj\Release\SpriteLibrary.csprojResolveAssemblyReference.cache
|
||||
C:\Users\TimYo\Documents\Visual Studio 2015\Projects\SpriteLibrary\SpriteLibrary\obj\Release\SpriteLibrary.Properties.Resources.resources
|
||||
C:\Users\TimYo\Documents\Visual Studio 2015\Projects\SpriteLibrary\SpriteLibrary\obj\Release\SpriteLibrary.csproj.GenerateResource.Cache
|
||||
C:\Users\TimYo\Documents\Visual Studio 2015\Projects\SpriteLibrary\SpriteLibrary\obj\Release\SpriteLibrary.dll
|
||||
C:\Users\TimYo\Documents\Visual Studio 2015\Projects\SpriteLibrary\SpriteLibrary\obj\Release\SpriteLibrary.pdb
|
Binary file not shown.
Binary file not shown.
BIN
SpriteLibrary/obj/Release/SpriteLibrary.dll
Normal file
BIN
SpriteLibrary/obj/Release/SpriteLibrary.dll
Normal file
Binary file not shown.
BIN
SpriteLibrary/obj/Release/SpriteLibrary.pdb
Normal file
BIN
SpriteLibrary/obj/Release/SpriteLibrary.pdb
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user