cull(engine-cleanup): pass-8 phase-2 cascade round 1
[trim] fully-unreachable files deleted: 6 [trim] files edited: 55, files deleted: 0, nodes removed: 244 [type-trim] files edited: 1, types removed: 1 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -7,11 +7,6 @@ public class SpotCardData
|
||||
{
|
||||
private Dictionary<int, int> _spotCardDict = new Dictionary<int, int>();
|
||||
|
||||
public bool ExistsSpotCard()
|
||||
{
|
||||
return _spotCardDict.Count > 0;
|
||||
}
|
||||
|
||||
public bool ExistsSpotCard(int cardId)
|
||||
{
|
||||
return _spotCardDict.ContainsKey(cardId);
|
||||
@@ -24,12 +19,6 @@ public class SpotCardData
|
||||
return value;
|
||||
}
|
||||
|
||||
public void SetSpotCardNum(int cardId, int num)
|
||||
{
|
||||
_spotCardDict[cardId] = num;
|
||||
/* Pre-Phase-5b: SetDirtyPossessionCardDict dropped */
|
||||
}
|
||||
|
||||
public Dictionary<int, int> CreateDictionaryIncludingSpotCard(IDictionary<int, int> srcDict)
|
||||
{
|
||||
Dictionary<int, int> dictionary = new Dictionary<int, int>(srcDict);
|
||||
|
||||
Reference in New Issue
Block a user