Skip to content

TheLazzoro/W3G-NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

W3G.NET

A replay parser tool for Warcraft III.

The tool is based on w3gjs and w3lib

NuGet downloads NuGet version

Usage

Example 1

using W3GNET;

var w3replay = new W3GReplay();
using (var stream = new FileStream("C:\\path\\to\\replay.w3g", FileMode.Open))
{
    await w3replay.Parse(stream);
}

Example 2

using W3GNET;

byte[] replayData;
var w3replay = new W3GReplay();
using (var stream = new MemoryStream(replayData))
{
    await w3replay.Parse(stream);
}

Dependencies

dotnet standard 2.1

About

A replay parsing library for Warcraft III. Based on w3gjs and w3lib.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages