Initial Commit
This commit is contained in:
commit
ee5c2f922d
2255 changed files with 547750 additions and 0 deletions
15
Assets/Scripts/Data/Items/HealthKitComponent.cs
Normal file
15
Assets/Scripts/Data/Items/HealthKitComponent.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace DefaultNamespace
|
||||
{
|
||||
[Serializable]
|
||||
public struct HealthKitData : IComponentData
|
||||
{
|
||||
public float Health;
|
||||
}
|
||||
|
||||
public class HealthKitComponent : ComponentDataProxy<HealthKitData>
|
||||
{
|
||||
}
|
||||
}
|
||||
11
Assets/Scripts/Data/Items/HealthKitComponent.cs.meta
Normal file
11
Assets/Scripts/Data/Items/HealthKitComponent.cs.meta
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 70dc7d3e6b2cd084e8c31ff7a6e0ab1f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
15
Assets/Scripts/Data/Items/ItemContainerAmountComponent.cs
Normal file
15
Assets/Scripts/Data/Items/ItemContainerAmountComponent.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using Unity.Entities;
|
||||
|
||||
namespace DefaultNamespace
|
||||
{
|
||||
[Serializable]
|
||||
public struct ItemContainerAmountData : IComponentData
|
||||
{
|
||||
public int Amount;
|
||||
}
|
||||
|
||||
public class ItemContainerAmountComponent : ComponentDataProxy<ItemContainerAmountData>
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: b02c7fd241b638f4781c5e7ec792a81f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
9
Assets/Scripts/Data/Items/ItemContainerData.cs
Normal file
9
Assets/Scripts/Data/Items/ItemContainerData.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
using Unity.Entities;
|
||||
|
||||
namespace DefaultNamespace
|
||||
{
|
||||
public struct ItemContainerData : IComponentData
|
||||
{
|
||||
public Hash128 ItemPrefab;
|
||||
}
|
||||
}
|
||||
11
Assets/Scripts/Data/Items/ItemContainerData.cs.meta
Normal file
11
Assets/Scripts/Data/Items/ItemContainerData.cs.meta
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: c8ddd7c12418b164496e393617390743
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Loading…
Add table
Add a link
Reference in a new issue