mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-01-15 01:39:39 -05:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
20 lines
536 B
C#
20 lines
536 B
C#
namespace Sandbox;
|
|
|
|
[Obsolete]
|
|
public sealed partial class ParticleSystem
|
|
{
|
|
/// <summary>
|
|
/// Loads a particle system from given file.
|
|
/// </summary>
|
|
[Obsolete]
|
|
public static ParticleSystem Load( string filename ) => default;
|
|
|
|
/// <summary>
|
|
/// Load a particle system by file path.
|
|
/// </summary>
|
|
/// <param name="filename">The file path to load as a particle system.</param>
|
|
/// <returns>The loaded particle system, or null</returns>
|
|
[Obsolete]
|
|
public static Task<ParticleSystem> LoadAsync( string filename ) => default;
|
|
}
|