forked from Shardstone/trail-into-darkness
12 lines
283 B
C#
12 lines
283 B
C#
using Nox.Game;
|
|
using Nox.Input;
|
|
using UnityEngine;
|
|
|
|
namespace Nox.Platform {
|
|
public abstract class PlatformSettings : ScriptableObject {
|
|
public DevicePlatform devicePlatform;
|
|
public InputSettings inputSettings;
|
|
public GameObject cameraPrefab;
|
|
}
|
|
}
|